回答編集履歴
2
修正
answer
CHANGED
@@ -37,7 +37,4 @@
|
|
37
37
|
```C#
|
38
38
|
Dictionary<string, string> test = new Dictionary<string, string>() { { "1", "test"} };
|
39
39
|
CameraManager.Instance.DictionaryValue.Value = test;
|
40
|
-
```
|
40
|
+
```
|
41
|
-
|
42
|
-
|
43
|
-
どういった用途に使用するのか判りませんが`NotificationObject<Dictionary<string,string>>`の型も変更する必要はあるかもしれません。
|
1
修正
answer
CHANGED
@@ -35,8 +35,8 @@
|
|
35
35
|
|
36
36
|
**反応するパターン**
|
37
37
|
```C#
|
38
|
-
Dictionary<string, string>
|
38
|
+
Dictionary<string, string> test = new Dictionary<string, string>() { { "1", "test"} };
|
39
|
-
CameraManager.Instance.DictionaryValue.Value =
|
39
|
+
CameraManager.Instance.DictionaryValue.Value = test;
|
40
40
|
```
|
41
41
|
|
42
42
|
|