我在我的ASP.NET應用程序中具有以下代碼,我想將converterName
變量轉換爲 類並將其傳遞給FillRequest<T>
方法。 這可能嗎?將類字符串轉換爲類
var converterName = HttpContext.Current.Items["ConverterName"] as string;
FillRequest<Web2ImageEntity>(Request.Params);
我也可以做
var converterName = HttpContext.Current.Items["ConverterName"] as string;
if (converterName == "Web2ImageEntity")
FillRequest<Web2ImageEntity>(Request.Params);
,但我有大約20實體類和我想找到一種方法來編寫代碼儘可能短。
可能的重複http://stackoverflow.com/questions/1252371/initialize-a-class-by-string-variable-in-c – Reniuz
不,你的貼子不回答我的問題。 – Tomas