gpt4 book ai didi

vb.net - 如何在 VB.NET 中创建通用属性?

转载 作者:行者123 更新时间:2023-12-04 23:10:30 25 4
gpt4 key购买 nike

我想做这样的事情:

Private _myCollection As IList(Of T)
Public Property MyProperty(Of T)() as IList(Of T)
Get
Return Me._myCollection
End Get
Set(ByVal value As String)
Me._myCollection = value
End Set
End Property

基本上,我想要收集任何类型的项目。然后,我将能够做这样的事情:
Dim myPropertyValue as <the type of some value>
if (MyProperty.Contains(<some value>))
myPropertyValue = CType(MyProperty(<some value>), <the type of some value>)

我怎样才能做到这一点?或者有没有比使用泛型类型更好的方法?

最佳答案

您可能需要创建一个通用类来执行此操作

Public Class MyClass(Of T)
Private _myCollection As IList(Of T)
Public Property MyProperty() as IList(Of T)
Get
Return Me._myCollection
End Get
Set(ByVal value As String)
Me._myCollection = value
End Set
End Property
End Class

关于vb.net - 如何在 VB.NET 中创建通用属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1869451/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com