DataType

Object


Description

Object is the base class of all other classes. Any Object can be assigned into a variable of type Object. The default value of a new instance of an Object is Nil. The Object class has no properties, methods, or events.

Notes

You will not typically use Object in your own code. However, any use of it will require you to cast your objects back to their original type before they can be used.

Var obj As Object
obj = New Dictionary
Dictionary(obj).Value("ID") = "Hello"

Compatibility

All project types on all supported operating systems.