D
Davej
How do you use get/set in the manner of normal methods?
I mean...
if ( m.getX() > 10)
{
....
}
but...
if ( m.X > 10)
{
....
}
does not compile.
I mean...
if ( m.getX() > 10)
{
....
}
but...
if ( m.X > 10)
{
....
}
does not compile.