Thursday, August 30, 2007

Declaring simple properties in c#

public String name {

get {
...
return ...;
}

set {
... = value;
}

}

No comments: