回答編集履歴
2
修正
test
CHANGED
@@ -77,9 +77,3 @@
|
|
77
77
|
CameraManager.Instance.DictionaryValue.Value = test;
|
78
78
|
|
79
79
|
```
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
どういった用途に使用するのか判りませんが`NotificationObject<Dictionary<string,string>>`の型も変更する必要はあるかもしれません。
|
1
修正
test
CHANGED
@@ -72,9 +72,9 @@
|
|
72
72
|
|
73
73
|
```C#
|
74
74
|
|
75
|
-
Dictionary<string, string> test
|
75
|
+
Dictionary<string, string> test = new Dictionary<string, string>() { { "1", "test"} };
|
76
76
|
|
77
|
-
CameraManager.Instance.DictionaryValue.Value = test
|
77
|
+
CameraManager.Instance.DictionaryValue.Value = test;
|
78
78
|
|
79
79
|
```
|
80
80
|
|