I apologise in advance for the simple nature of my question.
I am just starting on in c# having been previously working in VB.NET, there is
one thing that I can not find on the web or in my book.
How do you put a note in the c# code
In vb it's a simple ', what is it in C# please
Thanks
Graham

Notes in C# code
Gravy
You can read more language equivalents
bengz
Hi,
The any of the following can be used,
1. "//" and "/*........*/" - for single and multi line comments
http://msdn2.microsoft.com/en-us/library/k1sx6ed2(VS.80).aspx
2. "///" - for xml comments useful for creating documentation
http://msdn2.microsoft.com/en-us/library/b2s063f7(VS.80).aspx
As you are new to the language, good links to refer,
http://msdn2.microsoft.com/en-us/library/zwkz3536(VS.80).aspx
HTH,