阿罗哈
我有一个带有(伪)签名的方法:
public static T Parse(string datadictionary) where T : List
这不构建.如何限制方法只接受通用的List <>对象(cource不应该包含T,而是其他东西:)
我需要限制T的类型,因为我需要在此代码中调用它的方法.传入的类型是自定义集合(基于List).
public class MyCollection: List where T: MyClass, new() { public void Foo(); } public static T Parse (string datadictionary) where T : MyCollection { T.Foo(); }
-Edoode
那么,你可以有两个类型参数:
public static T Parse(string datadictionary) where T : List
那样你也会真正知道U是什么(以编译时的方式)......
编辑:或者(并且更好),只需指定元素类型并更改返回类型:
public static ListParse (string datadictionary)
例如
Listdata = Parse (whatever);
请注意,您可能希望更改List
为IList
甚至更广泛的界面.