C#

C# bool 타입을 byte 타입으로 변환 | Convert bool to byte | Convert byte to bool

DragonTory 2023. 2. 17. 10:59
반응형

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로 변환 하기

 

반응형