Friday, October 26, 2007

Comments of vb.net & c# language

Comments

In vb.net & c# language Comments are differ. Example of Comments of vb.net & c# language.

_______________________________________________________________________

VB.NET

' Single line only
REM Single line only
'''

XML comments

------------------------------------------------------------------------------------------------------

C#

// Single line
/* Multiple
line */
///

XML comments on single line
/*XML comments on multiple lines */

-----------------------------------------------------------------------------------------------------

Note: This code applicable for both desktop and web application.

------------------------------------------------------------------------------------------------------


1 comment: