位置:首页 > 软件操作教程 > 编程开发 > C# > 问题详情

System.Enum的方法

提问人:刘冬梅发布时间:2020-10-10

using System;

namespace App1

{

    class myApp

    {

        enum Fabric

        {

            Cotton = 1,

            Silk = 2

        }


        static void Main()

        {

            string fabStr = "Cotton";

            if (Enum.IsDefined(typeof(Fabric), fabStr))

            {

                Fabric fab = (Fabric)Enum.Parse(typeof(Fabric), fabStr);

                Console.WriteLine(Enum.GetName(typeof(Fabric), 2));

            }

        }

    }

}

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部