//Namespaceusing System;using System.Text;class Program{ static void Main() { //문자열(String) char[] charArr = { 'K', 'J', 'H', '\0' }; Console.WriteLine(charArr); //C#은 Write문에서 배열도 모두 출력해줌. 오버로드 때문에. string strTest = new string("strTest"); //string은 class, Unit Code(유니코드) 사용해줌. string strChar = new string(charArr); string strConst = "strConst"; ..