[Mono-list] Class Library coding standards

Miguel de Icaza miguel@ximian.com
18 Jul 2001 20:42:46 -0400


> Should we not keep the style simple meaning opening brace is always the
> line under like:

The rationale is from the C programming style, where you see code like
this:

void function () 
{
	if (a > 10) {
		printf ("yes!");
	}
}