T
TheOne
I'm newbie. I tried to compile and excute this super simple code.
== codestart ==
class Sample1 {
static void Main() {
string person;
person = "ÀÌÈ¿¸®¾¾";
System.Console.WriteLine(person + ", ¾È³çÇϼ¼¿ä");
System.Console.WriteLine(person + ", ¿À·¡°£¸¸ÀÔ´Ï´Ù");
}
}
__ code end __
When I excute the program, the console doesn't show korean texts,
instead it's showing ????. I'm using Korean OS, so there are already
korean fonts.
How can I make my console to print korean texts properly?
== codestart ==
class Sample1 {
static void Main() {
string person;
person = "ÀÌÈ¿¸®¾¾";
System.Console.WriteLine(person + ", ¾È³çÇϼ¼¿ä");
System.Console.WriteLine(person + ", ¿À·¡°£¸¸ÀÔ´Ï´Ù");
}
}
__ code end __
When I excute the program, the console doesn't show korean texts,
instead it's showing ????. I'm using Korean OS, so there are already
korean fonts.
How can I make my console to print korean texts properly?