enum.cs

来自「csharp-solution,C#高效编程源码」· CS 代码 · 共 21 行

CS
21
字号
using System; // System namespace. 

public enum AccountType {Checking, Deposit}

class TestAccount
{
    static void Main()
    {
		AccountType goldAccount;
		AccountType platinumAccount;

		goldAccount = AccountType.Checking;
		platinumAccount = AccountType.Deposit;
		Console.WriteLine("The Customer Account Type is {0}",goldAccount);
		Console.WriteLine("The Customer Account Type is {0}",platinumAccount);
    }
}



⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?