登录 注册
当前位置:主页 > 资源下载 > 31 > C#入门经典教程中关于SystemEnum的方法介绍

C#入门经典教程中关于SystemEnum的方法介绍

  • 更新:2024-06-22 15:28:32
  • 大小:4.81MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:.Net - 课程资源
  • 格式:PPT

资源介绍

System.Enum的方法 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)); } } } }