日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

枚举—C#基础回顾

發(fā)布時間:2025/4/5 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 枚举—C#基础回顾 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

為什么80%的碼農(nóng)都做不了架構(gòu)師?>>> ??

?

2.6.cs

/* author:frank datetime:2017-7-19 11:48:23 */ using System; using systemIO = System.IO;//給引用的名稱空間一個別名 using Introduction = Sample.Wrox.ProCSharp.Basics;namespace Sample {public class Program{public enum TimeOfDay{Morning = 0,Afternoon = 1,Evening = 2}public static int Main(string[] agrs){systemIO::FileInfo file = new systemIO::FileInfo(@"G:\Documents\CSharp\Sample\2\2.6.cs");//使用別名名稱空間Introduction::NamespaceExample NSEx = new Introduction::NamespaceExample();//使用別名限定,然后使用其中的類。Console.WriteLine(NSEx.GetNamespace());WriteGreeting(TimeOfDay.Morning);Console.WriteLine(TimeOfDay.Morning.ToString());//返回枚舉字符串TimeOfDay time2 = (TimeOfDay)Enum.Parse(typeof(TimeOfDay),"afternoon",true);//將字符串轉(zhuǎn)換為枚舉類型Console.WriteLine((int)time2);//將枚舉類型顯示轉(zhuǎn)換為整型,將會輸出枚舉對應(yīng)的整型。return 0;}public static void WriteGreeting(TimeOfDay timeOfDay){switch(timeOfDay){case TimeOfDay.Morning:Console.WriteLine("Good morning!");break;case TimeOfDay.Afternoon:Console.WriteLine("Good afternoon!");break;case TimeOfDay.Evening:Console.WriteLine("Good evening!");break;default:Console.WriteLine("Hello!");break;}}}namespace Wrox.ProCSharp.Basics{public class NamespaceExample{public string GetNamespace(){return this.GetType().Namespace;}}} }

?

轉(zhuǎn)載于:https://my.oschina.net/Sadhu/blog/1477310

總結(jié)

以上是生活随笔為你收集整理的枚举—C#基础回顾的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。