I'm trying to create a struct for an 8 bit signed integer, seeing as how I'm creating a calculator it would be useful. Windows' calc.exe has this set up as precision for Qword, Dword, Word, and Bytes. I have 64, 32, and 16 because they're already programmed into Visual C#. 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.