*** empty log message ***
authorhanda <handa>
Thu, 8 Jan 2009 09:55:10 +0000 (09:55 +0000)
committerhanda <handa>
Thu, 8 Jan 2009 09:55:10 +0000 (09:55 +0000)
temp.cs

diff --git a/temp.cs b/temp.cs
index 96d66a6..a5cf1d5 100644 (file)
--- a/temp.cs
+++ b/temp.cs
@@ -17,9 +17,9 @@ public class Test
     mt[1] = 'b';
     Console.WriteLine (mt2);
 
-    Array ary = Array.CreateInstance (typeof (int32), 1, 2, 3);
+    int[] ary = {1, 2, 3};
 
-    Array.ForEach (ary, { Console.WriteLine (obj); });
+    Array.ForEach<int> (ary, delegate (int o) { Console.WriteLine (o); });
 
   }
 }