From: handa Date: Thu, 8 Jan 2009 09:55:10 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=cd4c76a4eef103bd29223205160e4061ec7c07c9;p=m17n%2Fm17n-lib-cs.git *** empty log message *** --- 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); }); } }