I have four questions:
int8string to int8?
For more info on the equivalent data types, check out a link
- Does C# have
int8
Yes, it's called sbyte
- If so, how can I convert a
stringtoint8?
Call sbyte.Parse or sbyte.TryParse
- Does C# have
uint8
Yes, it's called byte
- If that how can I convert a
stringtouint8?
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