我看到很多关于这个话题的讨论。尽管示例和期望的结果总是非常具体和专业。对此的任何方向表示赞赏。
自定义类:
Public Class customClass(Of T, S)
[include properties]
[include methods]
End Class
类的实现:
dim [string] as string = string.empty
dim [type] as type = [string].gettype
dim instance as customClass(of [type], integer)
另请注意,我读过 vb.net 不允许您将参数传递给它的构造函数。我拒绝接受您不能将类型传递给类并根据该参数的类型生成对象。唯一的答案是类中的一个函数,它返回一个转换为所需类型的对象列表?感谢您的时间。
这个问题是由学术研究引起的。以上是“我正在尝试做的”谢谢。