j
k
j a
j l
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; } }
:-)
Back to the thread
Back to the list