See the definition of keys. All values act as normal, mutually-exclusive values, except the following:
// The bitmask to extract a key code from a key value.
KeyCode = 65535,
// The SHIFT modifier key.
Shift = 65536,
// The CTRL modifier key.
Control = 131072,
// The ALT modifier key.
Alt = 262144,
So all you need to check is the alt, control and shift. To get the non-shifted key, use
Keys value = key & Keys.KeyCode
To find out if shift, alt or control is pressed
bool altValue = key & Keys.Alt
bool controlValue = key & Keys.Control
bool shiftValue = key & Keys.Shift
And that's it