定义了一个枚举
 enum orientation : byte
   {
      north = 1,
      south = 2,
      east  = 3,
      west  = 4
   }然后显示其中的值
 orientation myDirection = orientation.north;
 Console.WriteLine("myDirection = {0}", myDirection);
我就不明白显示结果为什么是north, 而不是1呢,