質問編集履歴
2
更新
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
C# 複雑な入れ
|
1
|
+
C# 複雑な入れ子を作成したい
|
test
CHANGED
File without changes
|
1
更新
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,8 +28,30 @@
|
|
28
28
|
|
29
29
|
};
|
30
30
|
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
var parameters2 = new Dictionary<string, Dictionary<string, string>>();
|
36
|
+
|
37
|
+
{
|
38
|
+
|
39
|
+
{ "messages" , parameters }
|
40
|
+
|
41
|
+
};
|
42
|
+
|
31
43
|
```
|
32
44
|
|
33
45
|
|
34
46
|
|
35
47
|
この値を特定のキーの値にしたいですが、どのように記述すればよいでしょうか。
|
48
|
+
|
49
|
+
上記のコードだと
|
50
|
+
|
51
|
+
;が必要です
|
52
|
+
|
53
|
+
}が必要です
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
となってしまいます。
|