• 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

Revision115 (tree)
Time2015-12-31 14:21:52
Authorbellyoshi

Log Message

Change Summary

Incremental Difference

--- tanosii/chap01/chap03/list4.cs (nonexistent)
+++ tanosii/chap01/chap03/list4.cs (revision 115)
@@ -0,0 +1,18 @@
1+using System;
2+using System.Collections.Generic;
3+using System.Linq;
4+using System.Text;
5+using System.Threading.Tasks;
6+
7+namespace chap03
8+{
9+ class list4
10+ {
11+ public static void start(string[] args)
12+ {
13+ int a = 1;
14+ var s = (a + 1) + "G";
15+ Console.WriteLine(s);
16+ }
17+ }
18+}
--- tanosii/chap01/chap03/Program.cs (revision 114)
+++ tanosii/chap01/chap03/Program.cs (revision 115)
@@ -10,7 +10,7 @@
1010 {
1111 static void Main(string[] args)
1212 {
13- list3.start(args);
13+ list4.start(args);
1414 Console.ReadKey();
1515 }
1616 }