質問するログイン新規登録

回答編集履歴

2

修正

2021/10/25 09:47

投稿

Hawn
Hawn

スコア1222

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

修正

2021/10/25 09:47

投稿

Hawn
Hawn

スコア1222

answer CHANGED
@@ -35,8 +35,8 @@
35
35
 
36
36
  **反応するパターン**
37
37
  ```C#
38
- Dictionary<string, string> test2 = new Dictionary<string, string>() { { "2", "test2"} };
38
+ Dictionary<string, string> test = new Dictionary<string, string>() { { "1", "test"} };
39
- CameraManager.Instance.DictionaryValue.Value = test2;
39
+ CameraManager.Instance.DictionaryValue.Value = test;
40
40
  ```
41
41
 
42
42