Click here to Skip to main content
15,896,118 members
Home / Discussions / C#
   

C#

 
GeneralRe: Probability library Pin
Stefan Troschuetz18-Jun-04 5:24
Stefan Troschuetz18-Jun-04 5:24 
GeneralOT: Hello Pin
ChasP14-Jun-04 11:26
ChasP14-Jun-04 11:26 
GeneralAnti-alians Metafile Pin
Werdna14-Jun-04 11:04
Werdna14-Jun-04 11:04 
GeneralRe: Anti-alians Metafile Pin
Alexandre GRANVAUD15-Feb-10 1:59
Alexandre GRANVAUD15-Feb-10 1:59 
GeneralExact strings Pin
Chris Korzeniowski14-Jun-04 9:57
Chris Korzeniowski14-Jun-04 9:57 
GeneralRe: Exact strings Pin
Steven Campbell14-Jun-04 10:12
Steven Campbell14-Jun-04 10:12 
GeneralRe: Exact strings Pin
Chris Korzeniowski14-Jun-04 11:15
Chris Korzeniowski14-Jun-04 11:15 
GeneralRe: Exact strings Pin
Heath Stewart14-Jun-04 11:28
protectorHeath Stewart14-Jun-04 11:28 
See the System.Text.Encoding class, and use the correct encoding.

Also, keep in mind this isn't a text file you're creating. The line endings are wrong (should be Environment.NewLine, but can be others except the null-terminator throws it out of whack). It you want a text file, use a TextWriter derivative. Unless you're trying to write a CSV, you can always base64-encode (or whatever encoding you want, but the .NET FCL doesn't have support for others at this time) binary data. You can use the Convert.ToBase64String or Convert.ToBase64CharArray methods, or the ToBase64Transform for streaming support (in this case you'll need to use a StreamWriter to get access to the string, or use a MemoryStream temporarily then use the Encoding class to write it to your text file).

 

Microsoft MVP, Visual C#
My Articles
GeneralWindows Service App Pin
japanreddy14-Jun-04 9:55
japanreddy14-Jun-04 9:55 
GeneralRe: Windows Service App Pin
Heath Stewart14-Jun-04 10:16
protectorHeath Stewart14-Jun-04 10:16 
Generalneed help on adding C++ project Pin
skinnyreptile14-Jun-04 9:37
skinnyreptile14-Jun-04 9:37 
GeneralRe: need help on adding C++ project Pin
japanreddy14-Jun-04 9:59
japanreddy14-Jun-04 9:59 
GeneralRe: need help on adding C++ project Pin
Heath Stewart14-Jun-04 10:12
protectorHeath Stewart14-Jun-04 10:12 
QuestionUXTHEME - Impossible? Pin
reflex@codeproject14-Jun-04 9:28
reflex@codeproject14-Jun-04 9:28 
GeneralAdd Reference Dialog control Pin
Jeremy Kimball14-Jun-04 8:56
Jeremy Kimball14-Jun-04 8:56 
GeneralRe: Add Reference Dialog control Pin
LongRange.Shooter14-Jun-04 9:15
LongRange.Shooter14-Jun-04 9:15 
GeneralRe: Add Reference Dialog control Pin
Jeremy Kimball14-Jun-04 10:19
Jeremy Kimball14-Jun-04 10:19 
GeneralRe: Add Reference Dialog control Pin
Heath Stewart14-Jun-04 9:19
protectorHeath Stewart14-Jun-04 9:19 
GeneralRe: Add Reference Dialog control Pin
Dmitri Nеstеruk6-Jan-10 2:50
Dmitri Nеstеruk6-Jan-10 2:50 
GeneralRe: Add Reference Dialog control Pin
ian mariano14-Jun-04 9:29
ian mariano14-Jun-04 9:29 
GeneralRe: Add Reference Dialog control Pin
Jeremy Kimball14-Jun-04 10:21
Jeremy Kimball14-Jun-04 10:21 
GeneralClosing all mdichildren forms Pin
Dylan van Heerden14-Jun-04 8:33
Dylan van Heerden14-Jun-04 8:33 
GeneralRe: Closing all mdichildren forms Pin
Heath Stewart14-Jun-04 8:52
protectorHeath Stewart14-Jun-04 8:52 
GeneralRe: Closing all mdichildren forms Pin
Dylan van Heerden14-Jun-04 9:23
Dylan van Heerden14-Jun-04 9:23 
GeneralRe: Closing all mdichildren forms Pin
Heath Stewart14-Jun-04 9:25
protectorHeath Stewart14-Jun-04 9:25 

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.