开发者

Generic Method to Populate a List Cannot Create T()

I have the generic method below which would serve its purpose if it worked! But the items.Add(new T(mo)); part wont compile because im using a constructor. Can anyone help?

    private List<T> Items<T>(string query) where T : new()
    {

        List<T> items = new List<T>();
开发者_如何学C        ManagementObjectCollection moc = new ManagementObjectSearcher(query).Get();

        foreach (ManagementObject mo in moc)
            items.Add(new T(mo));

        return items;
    }


The where T : new() syntax only allows for parameterless constructors. There are some hacks to do this, else Activator.CreateInstance should work. But a preferred approach would be an accessible Init(arg) method, perhaps via an interface (also specified via where). So you can use:

var newObj = new T();
newObj.Init(mo);
items.Add(newObj);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜