我需要澄清是否可以将字节数组分配给VB.Net中的类属性。在我的应用程序中,有一个字节数组,如下所示:
Public byte2() As Byte = Nothing
现在,我想将此数组分配给此类的属性。
Public Class Form2
Private bytval As Byte()
Public Property NewProperty() As Byte()
Get
Return bytval
End Get
Set(ByVal value As Byte())
bytval = value
End Set
End Property
End Class
现在,我想将字节数组分配给属性,如下所示:
obj.NewProperty()= byte2()
有没有其他方法可以将属性数组分配给数组?
答案 0 :(得分:1)
只需使用此指定...不要包含括号
obj.NewProperty = byte2