본문 바로가기
컴퓨터공학/C,C++,C#

[C#] string을 byte 배열로 변환하기

by 무에서 2017. 1. 12.
반응형

System.Text.Encoding.UTF8.GetBytes 함수를 사용하여 문자열을 바이트 배열을 변환할 수 있다.

string s = "string to be converted";

byte[] b = System.Text.Encoding.UTF8.GetBytes(s);


반응형

댓글