c#에서 System.Text.Encoding.Default.GetBytes(str)의 반환 값 유형

348 단어 c#
        string str = "abc123    ";
        byte[] bytes = System.Text.Encoding.Default.GetBytes(str);
        for(int j = 0; j < bytes.Length; j++)
        {
            Console.WriteLine(bytes[j]);
        }

출력 결과: 97 98 99 49 50 51 228 184 173 230 150 135 230 177 137 229 173 151
는 해당 문자의 ASCII 값입니다.

좋은 웹페이지 즐겨찾기