質問編集履歴
4
修整
test
CHANGED
File without changes
|
test
CHANGED
@@ -13,8 +13,6 @@
|
|
13
13
|
### 発生している問題・エラーメッセージ
|
14
14
|
|
15
15
|
フィールド 'Games.title' は割り当てられません。常に既定値 null を使用します。
|
16
|
-
|
17
|
-
|
18
16
|
|
19
17
|
|
20
18
|
|
@@ -94,8 +92,46 @@
|
|
94
92
|
|
95
93
|
}
|
96
94
|
|
95
|
+
```
|
96
|
+
|
97
|
+
上記のコードは、後に書き換えたものです。投稿時のコードはこちらです(class Programの方は変わっていません)。
|
98
|
+
|
99
|
+
```
|
100
|
+
|
101
|
+
// こちらはGameのクラスです。
|
102
|
+
|
103
|
+
using System;
|
104
|
+
|
105
|
+
using System.Collections.Generic;
|
106
|
+
|
107
|
+
using System.Text;
|
97
108
|
|
98
109
|
|
110
|
+
|
111
|
+
namespace aaa
|
112
|
+
|
113
|
+
{
|
114
|
+
|
115
|
+
class Game
|
116
|
+
|
117
|
+
{
|
118
|
+
|
119
|
+
public string title;
|
120
|
+
|
121
|
+
public string genre;
|
122
|
+
|
123
|
+
public int time;
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
public Game (string title, string genre, int time) { }
|
128
|
+
|
129
|
+
}
|
130
|
+
|
131
|
+
}
|
132
|
+
|
133
|
+
```
|
134
|
+
|
99
|
-
|
135
|
+
ここに言語名を入力
|
100
136
|
|
101
137
|
C#
|
3
誤字の修整
test
CHANGED
File without changes
|
test
CHANGED
@@ -84,7 +84,7 @@
|
|
84
84
|
|
85
85
|
title = aTitle;
|
86
86
|
|
87
|
-
genre = aG
|
87
|
+
genre = aGenre;
|
88
88
|
|
89
89
|
time = aTime;
|
90
90
|
|
2
変数の書き直しが要点から注意をそらしているようなので、動画の通りに書き直しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -80,7 +80,15 @@
|
|
80
80
|
|
81
81
|
|
82
82
|
|
83
|
-
public Game (string
|
83
|
+
public Game (string aTitle, string aGenre, int aTime) {
|
84
|
+
|
85
|
+
title = aTitle;
|
86
|
+
|
87
|
+
genre = aGrenre;
|
88
|
+
|
89
|
+
time = aTime;
|
90
|
+
|
91
|
+
}
|
84
92
|
|
85
93
|
}
|
86
94
|
|
1
誤字の修整 genre
test
CHANGED
File without changes
|
test
CHANGED
@@ -80,7 +80,7 @@
|
|
80
80
|
|
81
81
|
|
82
82
|
|
83
|
-
public Game (string title, string
|
83
|
+
public Game (string title, string genre, int time) { }
|
84
84
|
|
85
85
|
}
|
86
86
|
|