

Enums in C# - use sbyte
Author: DeVoid08 14th, 2008
C# Code Specification:
The following example declares an enum type named Alignment with an underlying type of sbyte.
enum Alignment: sbyte
{
Left = -1,
Center = 0,
Right = 1
}
When you use enumerations in C# - you easy can declare new values as sbyte. Standart type of variable is int, but you can use and sbyte type.
read comments (1)
