Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Enumerate an enum?
//Title of this code //Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public enum Suit { Spades, Hearts, Clubs, Diamonds } public static void Main(string[] args) { foreach (Suit suit in Enum.GetValues(typeof(Suit))) { //Your code goes here Console.WriteLine(suit); } } } }
run
|
edit
|
history
|
help
0
C# Basic learning
Captcha
temp_with_pow
FindSmallest
more or less
EFDCSX ASXS
Singly-linked IList<T> in C#
Plt-D v.0.9
Ternary Operator
Integers Array manipulation examples