I have four questions:
int8
string
Does C# have int8
Yes, it's called sbyte
sbyte
If so, how can I convert a string to int8?
Call sbyte.Parse or sbyte.TryParse
sbyte.Parse
sbyte.TryParse
Does C# have uint8
uint8
Yes, it's called byte
byte
If that how can I convert a string to uint8?
Call byte.Parse or byte.TryParse
byte.Parse
byte.TryParse