mvc では、このような構造を使用できます
@Html.TextAreaFor(model => model.iEventSummary, new { @class = "test" })
これをパラメーターとして再現しようとしてnew { @class = "test" }
いますが、失敗しました
testFunction( new {key1="value1", key2="value2", key3="" })
public static string testFunction(dynamic dict)
{
string ret = string.Empty;
IDictionary<string, string> dictionary = dict;
foreach (var item in dictionary)
{
ret += item.Key + item.Value;
}
return ret;
}
メソッド変数はどのように宣言する必要がありますか? パラメータとして渡したい場合new {key1="value1", key2="value2", key3="" }
。