以下に示すコードの場合
using System;
public class Test
{
public static void Main()
{
Test t = new Test();
object AnonymousInside= t.GetAnonymousType();
Console.Write(AnonymousInside.Key);//Error on compilation
}
public object GetAnonymousType()
{
return new {Key="KeyName",Value="ValueName"};
}
}
type から匿名型を取り戻すにはどうすればよいobject
ですか?
それが不可能な場合、このコードはどのように機能しますか?
@Html.TextBoxFor(model => model.ConfirmPassword, new { maxlength = 35, type = "password", @class="textArea margindrop",placeholder="Confirm password"})