Together with scopes, it could be interesting, though:
original example:
private int foo; public int Foo { get { return foo; } set { foo = value; } }
why not:
public int Foo { int foo; get { return foo; } set { foo = value; } }
:-)
That hides even more information and I kind'a like that... ;)
/ Marcus Agehall (Scanian)
Previous text:
2003-12-22 21:54: Subject: C#-like properties
Together with scopes, it could be interesting, though:
original example:
private int foo; public int Foo { get { return foo; } set { foo = value; } }
why not:
public int Foo { int foo; get { return foo; } set { foo = value; } }
:-)
/ Mirar
pike-devel@lists.lysator.liu.se