I have an XML encoding problem in C# express

I have created an application for generating XML files for korean friends of mine. The end files need to be encoded iin EUC-KR, but my files seem to be encoded in utf-8, there doesn't seem to be an option to use korean encoding :(

I will appreciate any help that anyone could offer.

Jason D.

[296 byte] By [JasonD_dot_NET] at [2008-2-5]
# 1

Try File->Advance Save Options... to get options for saving the file using a different encoding.

Thanks,
Luke Hoban
Visual C# IDE Program Manager

LukeHoban at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 2
Doesn't work.... Like I said, MY PROGRAM, not the IDE...
JasonD_dot_NET at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 3
Hi. I hope, I am not too late :)

anyway, you need to use
System.Text.Encoding.GetEncoding(949);

to Get Korean "euc-kr" Encoding class.

after that, I am sure you know what to do.

anyway, 949 is the code page for euc-kr

bye!!!

- heejae

HeeJaeChang at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 4
Thanks :)
JasonD_dot_NET at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...