반응형
Convert bool to byte
Ver.1
bool boolValue = true;
byte byteValue = Convert.ToByte(boolValue);
Ver.2
bool boolValue = true;
byte byteValue = boolValue ? 1 : 0;
Convert byte to bool
Ver.1
byte byteValue = 1;
bool boolValue = Convert.ToBoolean(byteValue);
Ver.2
byte byteValue = 1
bool boolValue = (byteValue != 0);
byte를 bool로 변환 하기, bool을 byte로 변환 하기
반응형
'C#' 카테고리의 다른 글
C# System.ValueType.Equals 메서드 구현 내용 기록 (0) | 2023.02.24 |
---|---|
마샬링이란? | Marshaling? (0) | 2023.02.17 |
C# bool 형식 마샬링 할 때 주의 할 점 | C# Boolean Marshaling (0) | 2023.02.16 |
C# Marshaling Data Type (0) | 2023.02.15 |
ArgumentException: Partial byte sequence encountered in the input. (0) | 2023.02.13 |