Click here to Skip to main content
15,891,657 members
Home / Discussions / C#
   

C#

 
GeneralRe: UDP Send Interval Pin
carbon_golem28-Dec-10 6:09
carbon_golem28-Dec-10 6:09 
QuestionHow to localize AssemblyInfo.cs? Pin
Chesnokov Yuriy27-Dec-10 2:46
professionalChesnokov Yuriy27-Dec-10 2:46 
AnswerRe: How to localize AssemblyInfo.cs? Pin
Tony Richards27-Dec-10 3:10
Tony Richards27-Dec-10 3:10 
AnswerRe: How to localize AssemblyInfo.cs? Pin
Michael Agroskin30-Dec-10 17:27
Michael Agroskin30-Dec-10 17:27 
QuestionAuto localizing with ResXResourceReader Pin
Chesnokov Yuriy27-Dec-10 2:45
professionalChesnokov Yuriy27-Dec-10 2:45 
QuestionIncrease the quota : XmlDictionaryReaderQuotas Pin
abbd26-Dec-10 21:22
abbd26-Dec-10 21:22 
AnswerRepost Pin
Pete O'Hanlon26-Dec-10 21:44
mvePete O'Hanlon26-Dec-10 21:44 
GeneralRe: Repost Pin
abbd26-Dec-10 21:53
abbd26-Dec-10 21:53 
Hello,

I use this method to encode in base 64 :

[WebMethod]
       public string EncodeFileTo64Digits(string File_Path_input)
       {
           string base64;
           using (FileStream fs = new FileStream(File_Path_input, FileMode.Open, FileAccess.Read))
           {
               string ext;
               byte[] data = new byte[fs.Length];
               fs.Read(data, 0, data.Length);
               base64 = Convert.ToBase64String(data);
               ext = base64;
               return ext;
           }
       }

Thank you verry mutch for hlep me to resolve this great problem.
GeneralRe: Repost Pin
Pete O'Hanlon26-Dec-10 22:05
mvePete O'Hanlon26-Dec-10 22:05 
QuestionRe: Repost Pin
abbd26-Dec-10 22:13
abbd26-Dec-10 22:13 
AnswerRe: Repost Pin
Keith Barrow26-Dec-10 23:13
professionalKeith Barrow26-Dec-10 23:13 
GeneralRe: Repost Pin
#realJSOP27-Dec-10 1:26
mve#realJSOP27-Dec-10 1:26 
GeneralRe: Repost Pin
_Erik_27-Dec-10 4:11
_Erik_27-Dec-10 4:11 
QuestionRe: Repost Pin
abbd26-Dec-10 22:35
abbd26-Dec-10 22:35 
GeneralRe: Repost Pin
Keith Barrow26-Dec-10 23:15
professionalKeith Barrow26-Dec-10 23:15 
GeneralRe: Repost Pin
Pete O'Hanlon26-Dec-10 23:49
mvePete O'Hanlon26-Dec-10 23:49 
GeneralRe: Repost Pin
#realJSOP27-Dec-10 1:28
mve#realJSOP27-Dec-10 1:28 
GeneralRe: Repost Pin
thatraja27-Dec-10 8:08
professionalthatraja27-Dec-10 8:08 
GeneralRe: Repost Pin
Pete O'Hanlon27-Dec-10 9:34
mvePete O'Hanlon27-Dec-10 9:34 
GeneralRe: Repost Pin
Keith Barrow28-Dec-10 1:40
professionalKeith Barrow28-Dec-10 1:40 
Questionmodify XmlDictionaryReaderQuotas Pin
abbd26-Dec-10 5:24
abbd26-Dec-10 5:24 
AnswerRe: modify XmlDictionaryReaderQuotas Pin
Henry Minute26-Dec-10 6:11
Henry Minute26-Dec-10 6:11 
AnswerRe: modify XmlDictionaryReaderQuotas Pin
Keith Barrow26-Dec-10 6:11
professionalKeith Barrow26-Dec-10 6:11 
QuestionRe: modify XmlDictionaryReaderQuotas Pin
abbd26-Dec-10 6:53
abbd26-Dec-10 6:53 
AnswerRe: modify XmlDictionaryReaderQuotas Pin
Keith Barrow26-Dec-10 7:08
professionalKeith Barrow26-Dec-10 7:08 

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.