我有四个问题:
int8
string
转换为int8
?uint8
string
转换为uint8
?答案 0 :(得分:57)
sbyte
sbyte.Parse
或sbyte.TryParse
byte
byte.Parse
或byte.TryParse
答案 1 :(得分:8)
我相信您可以将sbyte
用于带符号的8位整数,如下所示:
sbyte sByte1 = 127;
您还可以将byte
用于无符号8位整数,如下所示:
byte myByte = 255;
以下是sbyte
和byte
的一些链接:
General Integral type tables
sbyte documentation
byte documentation
答案 2 :(得分:2)
有关等效数据类型的更多信息,请查看a link