I saw some applications using different class and properties..
does PUBLIC of any variable can be equal to a public property
like the following 2 versions of examples will result the same thing if we call them or
inherits.
I need more explainations between these two class and usage of properties and public varibles.
(the code is not as is.. just a rough draft)
=== version 1 ===
Class Car
public Doors as integer
public Windows as integer
public Tires as integer
public sub Accelerate()
......
(more code)
......
end class
=== version 2 ===
Class Car
public Property Doors() as integer
public Property Windows() as integer
public Property Tires() as integer
public sub Accelerate()
......
(more code)
......
end class

Public and Properties
JHalmans
Bogdan.B