私の*.cshtmlファイルには、次のようなものが必要です
@List<List<int>> exps = new List<List<int>>(){ new List<int>(){1}, new List<int>(){2}, new List<int>(){3, 4}};
(intはより洗練された型に置き換えられる予定です...) 上記の行を含むページを実行すると、CS0305: Using the generic type 'System.Collections.Generic.List<T>' requires 1 type argumentsエラーが発生します。
動作するように上記のコード行を修正することは可能ですか?