如何在vb.net中为类运行一次代码?

时间:2017-03-21 06:27:11

标签: vb.net

基本上我有一个带有静态共享成员的类。我想要一个运行一次的代码来启动静态共享成员。

Class algorithm
    Public name As String
    Public lowPriceatNiceHash As Double
    Public highPriceatNiceHash As Double
    Public fixedPriceatNicehash As Double

    Shared dictOfAlgorithm As Generic.Dictionary(Of String, algorithm)
End Class

现在dictOfAlgorithm字典应该在使用类的开始时设置为新的空字典。只有一次。

1 个答案:

答案 0 :(得分:1)

将其初始化为声明的地方:

>>> a.T
array([[1],
       [3],
       [4]])

或使用.cctor:

Class ...

    Public Shared dictOfAlgorithm As Generic.Dictionary(Of String, algorithm) = New Generic.Dictionary(Of String, algorithm)

End Class