From cd4c76a4eef103bd29223205160e4061ec7c07c9 Mon Sep 17 00:00:00 2001 From: handa Date: Thu, 8 Jan 2009 09:55:10 +0000 Subject: [PATCH] *** empty log message *** --- temp.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/temp.cs b/temp.cs index 96d66a6..a5cf1d5 100644 --- 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 (ary, delegate (int o) { Console.WriteLine (o); }); } } -- 1.7.10.4