June 19, 2002 - The Object Class
June 19, 2002 The Object Class Tips: June 2002
Yehuda Shiran, Ph.D.
|
Object
class. The following definition of class Foo
:
class Foo {/* members should go here */}
is identical to this alternative definition:
class Foo extends Object {/* members should go here */}
To learn more about JScript .NET, go to Column 111, JScript .NET, Part V: Polymorphism.