Click here to Skip to main content
15,892,575 members
Home / Discussions / C#
   

C#

 
GeneralRe: Metro Style App Animation Pin
leena2063-Apr-12 22:40
leena2063-Apr-12 22:40 
GeneralRe: Metro Style App Animation Pin
Pete O'Hanlon3-Apr-12 22:54
mvePete O'Hanlon3-Apr-12 22:54 
GeneralMessage Removed Pin
3-Apr-12 22:57
leena2063-Apr-12 22:57 
GeneralRe: Metro Style App Animation Pin
Pete O'Hanlon3-Apr-12 23:38
mvePete O'Hanlon3-Apr-12 23:38 
QuestionRename Directories Pin
RadioButton3-Apr-12 9:45
RadioButton3-Apr-12 9:45 
AnswerRe: Rename Directories Pin
Richard Andrew x643-Apr-12 11:00
professionalRichard Andrew x643-Apr-12 11:00 
AnswerRe: Rename Directories Pin
fjdiewornncalwe3-Apr-12 11:15
professionalfjdiewornncalwe3-Apr-12 11:15 
QuestionWindow Metro Base64 Encode Pin
Kevin Marois3-Apr-12 8:33
professionalKevin Marois3-Apr-12 8:33 
I'm in C# WinRT in Metro, and I' trying to encode an image. I have this code from a .Net 4 app, but it doesn't compile in 4.5:

private string imageToBase64(Image image, System.Drawing.Imaging.ImageFormat format)
{
using (MemoryStream ms = new MemoryStream())
{
    // Convert Image to byte[]
    image.Save(ms, format);
    byte[] imageBytes = ms.ToArray();

    // Convert byte[] to Base64 String
    string base64String = Convert.ToBase64String(imageBytes);
    return base64String;
}
}


Anyone know how to do this in C# Metro?
Everything makes sense in someone's mind

AnswerRe: Window Metro Base64 Encode Pin
Pete O'Hanlon3-Apr-12 8:43
mvePete O'Hanlon3-Apr-12 8:43 
QuestionRe: Window Metro Base64 Encode Pin
Eddy Vluggen3-Apr-12 8:45
professionalEddy Vluggen3-Apr-12 8:45 
QuestionConverting word doc to xml Pin
Member 87628082-Apr-12 23:17
Member 87628082-Apr-12 23:17 
AnswerRe: Converting word doc to xml Pin
Richard MacCutchan2-Apr-12 23:50
mveRichard MacCutchan2-Apr-12 23:50 
AnswerRe: Converting word doc to xml Pin
Vipin_Arora3-Apr-12 0:32
Vipin_Arora3-Apr-12 0:32 
AnswerRe: Converting word doc to xml Pin
Member 87628084-Apr-12 23:43
Member 87628084-Apr-12 23:43 
QuestionDatabase connection pool thr application Pin
anishkannan2-Apr-12 18:16
anishkannan2-Apr-12 18:16 
AnswerRe: Database connection pool thr application Pin
Richard MacCutchan2-Apr-12 21:26
mveRichard MacCutchan2-Apr-12 21:26 
QuestionRe: Database connection pool thr application Pin
Eddy Vluggen3-Apr-12 2:04
professionalEddy Vluggen3-Apr-12 2:04 
AnswerRe: Database connection pool thr application Pin
Richard MacCutchan3-Apr-12 5:45
mveRichard MacCutchan3-Apr-12 5:45 
AnswerRe: Database connection pool thr application Pin
Eddy Vluggen3-Apr-12 1:54
professionalEddy Vluggen3-Apr-12 1:54 
GeneralRe: Database connection pool thr application Pin
anishkannan3-Apr-12 2:04
anishkannan3-Apr-12 2:04 
GeneralRe: Database connection pool thr application Pin
Pete O'Hanlon3-Apr-12 2:13
mvePete O'Hanlon3-Apr-12 2:13 
GeneralRe: Database connection pool thr application Pin
anishkannan3-Apr-12 2:30
anishkannan3-Apr-12 2:30 
AnswerRe: Database connection pool thr application Pin
Eddy Vluggen3-Apr-12 2:41
professionalEddy Vluggen3-Apr-12 2:41 
GeneralRe: Database connection pool thr application Pin
anishkannan3-Apr-12 2:45
anishkannan3-Apr-12 2:45 
GeneralRe: Database connection pool thr application Pin
Eddy Vluggen3-Apr-12 2:50
professionalEddy Vluggen3-Apr-12 2:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.