当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Enum Parse()用法及代码示例


在这里,我们将了解 Enum 类的 Parse() 方法。此方法用于将一个或多个枚举常量的名称或数值的字符串表示形式转换为等效的枚举对象。这是两次重载的方法。

用法:

object Enum.Parse(Type enumType, string value);
object Enum.Parse(Type enumType, string value, bool ignoreCase);

参数:

  • enumType:枚举对象的类型。
  • value:要解析的字符串值。
  • ignoreCase:它指定操作是否区分大小写。

返回值:

此方法根据传递的值返回解析的对象。

异常:

  • System.OverflowExcetion
  • System.ArgumentException
  • System.ArgumentNullException

程序:

下面给出了演示使用 Enum 类的 Parse() 方法的源代码。给定的程序已成功编译并执行。

using System;

class Sample
{
    enum Directions { EAST=0,WEST=1,NORTH=2,SOUTH=3};
   
    //Entry point of Program
    static public void Main()
    {
        Directions dir;

        //Parse string to objects then 
        //we convert it to Enum objects
        dir  = (Directions)Enum.Parse(typeof(Directions), "1");
        Console.WriteLine(Enum.GetName(typeof(Directions),dir));

        //Parse string to objects then 
        //we convert it to Enum objects with ignore case
        dir = (Directions)Enum.Parse(typeof(Directions), "3",true);
        Console.WriteLine(Enum.GetName(typeof(Directions), dir));
    }
}

输出:

WEST
SOUTH
Press any key to continue . . .



相关用法


注:本文由纯净天空筛选整理自 C# program to demonstrate the use of Parse() method of Enum class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。