projects
/
m17n
/
m17n-lib-cs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
55a5ffa
)
*** empty log message ***
author
handa
<handa>
Thu, 8 Jan 2009 09:55:10 +0000
(09:55 +0000)
committer
handa
<handa>
Thu, 8 Jan 2009 09:55:10 +0000
(09:55 +0000)
temp.cs
patch
|
blob
|
history
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); });
}
}