P
ptek
Hi,
For example, if I do :
using System.IO;
using (StreamWriter sw = new StreamWriter("text.txt"))
{
sw.WriteLine("coupé");
}
I end up with a file containing "coupé" instead of "coupé" ...
How can I solve this problem ?
thanks
For example, if I do :
using System.IO;
using (StreamWriter sw = new StreamWriter("text.txt"))
{
sw.WriteLine("coupé");
}
I end up with a file containing "coupé" instead of "coupé" ...
How can I solve this problem ?
thanks