[MonoDevelop] BooBinding patch bug 324223

Tom Spink tspink at gmail.com
Tue Mar 17 14:45:46 EDT 2009


2009/3/17 Manuel de la Pena <mandel at themacaque.com>:
> Hello there,
>
> Here is the patch I have been working on to shell the Boo compilation
> allowing to recompile without having problems because the compilation
> loaded assemblies to the AppDomain
> (https://bugzilla.novell.com/show_bug.cgi?id=324223)
>
> I hope it helps.
>
> Kr,
>
> manuel => mandel
>
> PS: Thanks to Tak and mhutch at IRC... I must have been a pain in the
> ass, in my defense is my  first monodevelop patch :P

Hi,

I'm not an official reviewer by any means - but something I picked up
on is the style you used for comments.  Traditionally, comments are
enclosed in /* and */, or by using a double-slash prefix, not #
symbols.  This is certainly the coding style that MonoDevelop uses, as
the # prefix is typically for compiler directives.  Single line
comments are prefixed by double slashes:

// Single Line Comment

Multiple line comments are enclosed with /* and */:

/* Multiple
 * Line
 * Comment
 */

(the *'s on each line are not required, but make the comment block
more readable in the source-code).

I hope this helps!
-- 
Tom Spink
Joan Rivers  - "I knew I was an unwanted baby when I saw that my bath
toys were a toaster and a radio."


More information about the Monodevelop-list mailing list