• 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

Revision106 (tree)
Time2015-12-28 11:34:06
Authorbellyoshi

Log Message

Change Summary

Incremental Difference

--- tanosii/chap01/chap02/list7.cs (nonexistent)
+++ tanosii/chap01/chap02/list7.cs (revision 106)
@@ -0,0 +1,23 @@
1+using System;
2+using System.Collections.Generic;
3+using System.Linq;
4+using System.Text;
5+using System.Threading.Tasks;
6+
7+namespace chap02
8+{
9+ class list7
10+ {
11+ private static Action sample()
12+ {
13+ var msg = "Hello Sample";
14+ return () => { Console.WriteLine(msg); };
15+ }
16+
17+ public static void start(string[] args)
18+ {
19+ var result = sample();
20+ result();
21+ }
22+ }
23+}
--- tanosii/chap01/chap02/Program.cs (revision 105)
+++ tanosii/chap01/chap02/Program.cs (revision 106)
@@ -10,7 +10,7 @@
1010 {
1111 static void Main(string[] args)
1212 {
13- list6.start(args);
13+ list7.start(args);
1414 Console.ReadLine();
1515
1616 }