Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Digging Deeper
//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 static void Main(string[] args) { var names = new List<string>() { "John", "Tom", "Peter" }; var enumerator = names.GetEnumerator(); try { while (enumerator.MoveNext()) { string name = (string)enumerator.Current; Console.WriteLine(name); } } finally { enumerator.Dispose(); } } } }
run
|
edit
|
history
|
help
0
25
5555555
[REDACTED] database V0.1
C# - a method that accepts an indefinite number of parameters
solution to problem #3 from projecteuler.net
Random IF OR
test
Print Matrix To Screen (with little pretty box)
D11
Compiler