반응형
public static byte[] StringToByteArray(string hex) {
return Enumerable.Range(0, hex.Length)
.Where(x => x % 2 == 0)
.Select(x => Convert.ToByte(hex.Substring(x, 2), 16))
.ToArray();
}
http://stackoverflow.com/questions/8048498/convert-c-function-to-c-sharp
퍼옴
반응형
'프로그래밍 > C#' 카테고리의 다른 글
TimeSpan 시간 계산( 최근 파일 변경시간 표시) (1) | 2022.06.15 |
---|---|
C# DateTime Format (0) | 2020.01.09 |
자동사이즈 변경 (0) | 2016.04.18 |
문자열 시간 계산 (0) | 2015.09.18 |