練習用です。いろんなものがごちゃまぜです。
| @@ -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 | +} |
| @@ -10,7 +10,7 @@ | ||
| 10 | 10 | { |
| 11 | 11 | static void Main(string[] args) |
| 12 | 12 | { |
| 13 | - list3.start(args); | |
| 13 | + list4.start(args); | |
| 14 | 14 | Console.ReadKey(); |
| 15 | 15 | } |
| 16 | 16 | } |