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