質問編集履歴
1
ソースコードはそのままコピペで、エラーは別のところに書きました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,43 @@
|
|
18
18
|
|
19
19
|
```
|
20
20
|
|
21
|
-
というような文を追加するといろんなところでエラーがで出ます。
|
21
|
+
というような文を追加するといろんなところでエラーがで出ます。
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
**エラー⑴ "IEnumerator oldTV(){" のところ(27行目)**
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
Assets/TVtext.cs(27,20): error CS1525: Unexpected symbol `(', expecting `,', `;', or `='
|
30
|
+
|
31
|
+
```
|
32
|
+
|
33
|
+
**エラー⑵⑶ "} else {" のところ(34行目) ここでは2つエラーが出ています。**
|
34
|
+
|
35
|
+
```
|
36
|
+
|
37
|
+
Assets/TVtext.cs(34,8): error CS1519: Unexpected symbol `else' in class, struct, or interface member declaration
|
38
|
+
|
39
|
+
```
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
```
|
44
|
+
|
45
|
+
Assets/TVtext.cs(34,10): error CS9010: Primary constructor body is not allowed
|
46
|
+
|
47
|
+
```
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
**エラー⑷ "}" のところ(41行目)**
|
52
|
+
|
53
|
+
```
|
54
|
+
|
55
|
+
Assets/TVtext.cs(41,0): error CS1525: Unexpected symbol `}'
|
56
|
+
|
57
|
+
```
|
22
58
|
|
23
59
|
|
24
60
|
|
@@ -80,9 +116,7 @@
|
|
80
116
|
|
81
117
|
if (TVswitch == 0) {
|
82
118
|
|
83
|
-
IEnumerator oldTV(){
|
119
|
+
IEnumerator oldTV(){
|
84
|
-
|
85
|
-
|
86
120
|
|
87
121
|
//テレビをつける
|
88
122
|
|
@@ -96,9 +130,7 @@
|
|
96
130
|
|
97
131
|
TVswitch = 1;
|
98
132
|
|
99
|
-
} else { //エラー1:Assets/TVtext.cs(34,8): error CS1519: Unexpected symbol `else' in class, struct, or interface member declaration
|
100
|
-
|
101
|
-
|
133
|
+
} else {
|
102
134
|
|
103
135
|
//テレビを消す
|
104
136
|
|
@@ -112,9 +144,7 @@
|
|
112
144
|
|
113
145
|
}
|
114
146
|
|
115
|
-
}
|
147
|
+
}
|
116
|
-
|
117
|
-
|
118
148
|
|
119
149
|
```
|
120
150
|
|