回答編集履歴
1
行末セミコロン
answer
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
というか、本当にただ string を double に変換するだけだったら、TryParse とかはどうでしょうか。
|
7
7
|
|
8
8
|
```
|
9
|
-
if (this.XTextBoxText == value) return
|
9
|
+
if (this.XTextBoxText == value) return;
|
10
10
|
|
11
11
|
double v;
|
12
12
|
if(double.TryParse(value, v)) this.x = v;
|