I'm trying to create a struct for an 8 bit signed integer,
I need information on how to build structs so that they can be assigned values such as:private Int8 Input8Bit = 0;
Using a struct like:
public struct Int8 { }
But I don't even know where to begin. As I stated, any help is appreciated.
If you just need a signed 8-bit data type, try sbyte.