Quackster
a devbest user says what
Java syntax is almost the same as C#?
C#;
Code:
public int Test
{
get;
set;
}
Java
Code:
private int mTest;
public int getTest() {
return mTest;
}
public void setTest(int test) {
return mTest = test;
}
I'd say Mitch is right