• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

練習用です。いろんなものがごちゃまぜです。


Commit MetaInfo

Revision102 (tree)
Time2015-12-28 11:04:22
Authorbellyoshi

Log Message

Change Summary

Incremental Difference

--- tanosii/chap01/chap02/list4.cs (revision 101)
+++ tanosii/chap01/chap02/list4.cs (revision 102)
@@ -8,13 +8,9 @@
88 {
99 class list4
1010 {
11- private static void sample()
12- {
13- Console.WriteLine("QX");
14- }
1511 public static void start(string[] args)
1612 {
17- Action act = sample;
13+ Action act = () => { Console.WriteLine("QX"); };
1814 act();
1915 }
2016 }