// Some Pseudo Code of Class Foo Class Foo { Static int FooCount; float FooVariable; Static int FooInc() {return FooCount++;} float GetFooVar() {return this.FooVariable;} } Foo MyFoo = New Foo(3.14); Foo MyFoo2 = New Foo(6.02);