[Mono-list] Class Library coding standards

Garrett Rooney rooneg@electricjellyfish.net
Wed, 18 Jul 2001 16:28:56 -0400


 
> And:
> 			if (bar (5) > 10) 
> 			{
> 				val = false;
> 			} else
> 			{
> 				val = true
> 			}

i have no problem with any of the other suggestions, but this looks really
ugly.  i would very much prefer

if (bar > 10) {
	val = false;
} else {
	val = true;
}

-- 
garrett rooney                     Unix was not designed to stop you from 
rooneg@electricjellyfish.net       doing stupid things, because that would  
http://electricjellyfish.net/      stop you from doing clever things.