C# 中的 Enum.GetName


使用 Enum.GetName 获取枚举值的字符串表示。

它有两个参数 -

  • 类型 - 枚举类型

  • 对象 - 枚举的值

以下是一个示例 -

示例

 实时演示

using System;

class Demo {
   enum Vehicle {
      Car,
      Motorbike,
      Truck,
      Bicycles
   };
   static void Main() {
      // Usig GetName to get the string representation of enum type
      string res = Enum.GetName(typeof(Vehicle), Vehicle.Motorbike);
   
      // Displaying
      Console.WriteLine(res);
   }
}

输出

Motorbike

更新日期: 22-6 月-2020

580 次浏览

开始你的 职业

完成课程即可获得认证

开始
广告