Does C# have int8 and uint8?
- Does C# have
int8
Yes, it's called sbyte
- If so, how can I convert a
string
toint8
?
Call sbyte.Parse
or sbyte.TryParse
- Does C# have
uint8
Yes, it's called byte
- If that how can I convert a
string
touint8
?
Call byte.Parse
or byte.TryParse
I believe you can use sbyte
for signed 8-bit integers, as follows:
sbyte sByte1 = 127;
You can also use byte
for unsigned 8-bit integers, as follows:
byte myByte = 255;
Here are some links for sbyte
and byte
:
General Integral type tables
sbyte documentation
byte documentation
- Yes, the c# equivalent is known as sbyte
- Convert.ToSByte( string )
- Yes, the c# equivalent is known as byte
- Convert.ToByte( string )
For more info on the equivalent data types, check out a link