Turkish Character problem ( Streamwriter )
Hi everyone..I want to write 'o' , ' ' , 'u' and 'c' characters to a .rtf file.and I want to use StreamWriter for writing and StreamReader for reading..But when i use StreamWriter and send one of the Turkish character, in the .rtf file there becomes a character like "A ".. what must i do_ and i think i must use "iso 8859-9" encoding..

Turkish Character problem ( Streamwriter )
Mystagogue
BGood
Andrea Montanari
then you can use FileStream's Write function..
FileStream fsTarget = new FileStream (target,FileMode.CreateNew,FileAccess.Write);
fsTarget.WriteByte(305); // 305 is the byte code of Turkish "i"
hope it works..
ccondit
new StreamWriter(@"c:\windows\soner.rtf",true,Encoding.Unicode)
solved it..