When using MonoDevelope during compilation does it consider the language syntax withi

Hi Friends,

When using MonoDevelope during compilation does it consider the language syntax within the comments like brackets etc etc.
Regards,
vanhouten777.

Is

/* */ is this a valid comment delimiter.

// is this a valid comment starter.

Regards,
vanhouten777.

Commenting in C# will appear green like so :

//This is a single lined comment

/*
This 
is a
multi
lined
comment
*/


void /*This is a comment between code*/ DoSomething()
{

}

//Below is a summary comment (put 3 "///" above a function and it will auto create

	/// <summary>
	/// Awake this instance.
	/// </summary>
void Awake()
{

}

All comments are ignored on running the application.

Hi Myhijim,

Thanks for the reply. But I noticed in the monodevelope editor it takes into account brackets in the comment section but maybe after compiling it won’t. What I want to know is if there is any error in comment section in regards to bracket , then the script won’t compile, thats the problem.
Regards,
vanhouten777…

Anything commented out won’t be compiled.