回答編集履歴
1
上手く動作しない点があったので修正
answer
CHANGED
@@ -2,7 +2,8 @@
|
|
2
2
|
|
3
3
|
```C#
|
4
4
|
//全ての設定を格納する変数
|
5
|
+
//↓エラーが出たので、int→stringにしました
|
5
|
-
Dictionary<
|
6
|
+
Dictionary<string, Dictionary<string, int>> processList = new Dictionary<string, Dictionary<string, int>>();
|
6
7
|
Dictionary<string, int> process;
|
7
8
|
|
8
9
|
//1回目
|