"Penguin" <davidcollien at gmail.com> > > class Foo { > int a; > float b; > this( member a, member b ) { > } > } Why the keyword ? Why not just: this(a,b) { } ?