.NET // vs /// Comments convention - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T06:05:08Z http://stackoverflow.com/feeds/question/181015 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/181015/net-vs-comments-convention 9 .NET // vs /// Comments convention johnc 2008-10-08T01:02:12Z 2009-01-12T22:44:28Z <p>I am just checking out F#, so apologies if this is a silly question, but in the VS2008 F# CTP 1.9.6.2 'Tutorial' project, both // and /// are used for commenting code.</p> <p>Is there a functional difference between the two slash vs three slash commenting, or is it convention (as it appears in the tutorial code) to comment a function with /// and use // for everything else?</p> http://stackoverflow.com/questions/181015/net-vs-comments-convention/181019#181019 5 Answer by Alexander Kojevnikov for .NET // vs /// Comments convention Alexander Kojevnikov 2008-10-08T01:03:43Z 2008-10-08T01:03:43Z <p>/// is for documentation comments. VS will use it when generating intellisense information.</p> http://stackoverflow.com/questions/181015/net-vs-comments-convention/181024#181024 21 Answer by Franci Penov for .NET // vs /// Comments convention Franci Penov 2008-10-08T01:05:23Z 2008-10-08T01:05:23Z <p>Using three slashes (///) is a C# convention for <a href="http://msdn.microsoft.com/en-us/library/b2s063f7.aspx" rel="nofollow">XML Documentation Comments</a> that is adopted by F# as well.</p> http://stackoverflow.com/questions/181015/net-vs-comments-convention/181172#181172 2 Answer by Dean for .NET // vs /// Comments convention Dean 2008-10-08T02:54:10Z 2009-01-12T22:44:28Z <p>It's similar to /* comment */ vs /** documented comment */ in Java.</p> <p>The latter works the same, but is also recognised by documentation software to be developer documentation - not just a note.</p>