theme changed

This commit is contained in:
nik
2025-09-30 08:21:09 +03:00
parent 4c261f7def
commit 8bd93df2ae
917 changed files with 15023 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
public enum AccountType { Checking, Deposit }
public class Enum
{
public static void Main(string[] args)
{
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);
}
}