It is the same as static
in C# and most other languages. It means that every object in the class uses the same copy of the variable, property or method. When used with a method as it is static you don't need an object instance.
MyClass.DoSomething()
rather than
Dim oObject as New MyClass()
oObject.DoSomething()
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…