예제 #1
0
 static void HelloWorld()
 {
     var helloCollection = new HelloCollection();
       foreach (string s in helloCollection)
       {
     Console.WriteLine(s);
       }
 }
예제 #2
0
 static void Main()
 {
     var helloCollection = new HelloCollection();
     foreach (var s in helloCollection)
     {
     Console.WriteLine(s);
     }
 }
예제 #3
0
        static void HelloWorld()
        {
            var helloCollection = new HelloCollection();

            foreach (string s in helloCollection)
            {
                Console.WriteLine(s);
            }
        }