モデルにはList<string>
があります。オブジェクトオブジェクトをリストに変換するには<string> c#?
// this is from MVC3 (namespace System.Web.Mvc -> ModelMetadata), I did not write this
// Summary:
// Gets the value of the model.
//
// Returns:
// The value of the model. For more information about System.Web.Mvc.ModelMetadata,
// see the entry ASP.NET MVC 2 Templates, Part 2: ModelMetadata on Brad Wilson's
// blog
public object Model { get; set; }
ある 私はHTMLヘルパーを書くとき、私はmetadata.Model
からデータを取得することができますが、私の質問は:Object
からList<string>
を取得する方法?
オブジェクトの実際の型は何ですか? _any_オブジェクトをいくつかの文字列リストに "変換"することは意味がありません。 –
タイプキャストを意味しますか? objをListとしますか? –
zmbq