定制系列(T)

时间:2013-11-26 12:04:22

标签: vb.net collections generic-collections

我正在尝试创建使用类型而不是Collection的{​​{1}}自定义版本。我有一个工作类(见下文),但是,我想将其更改为Object,而不是为我想要使用的每种类型创建一个新类。有可能实现这个吗?

(Of T)

1 个答案:

答案 0 :(得分:1)

您想将CustomClass更改为通用对象吗?

然后这很简单:

Public Class CustomCollection(Of T)
    Implements IDictionary(Of String, T)

    'etc...

End Class