DataType

Object

DataType


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.

It is not necessary to specify “Object” as the Super of a class. The Inspectors Super field can simply be left empty.

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

Project Types

All

Operating Systems

All