Comments: how to use "<" in comments... what is the escape sequence?
-
Hi, How do I include the '<' character in a c# XML comment (///)? What is the escape character? ie. /// ie. List ...... won't work because is interpreted as a xml element. but I just want to use the '<' and '>' as a comment. Any help greatly appreciated. Thanks in advance Pakl
-
Hi, How do I include the '<' character in a c# XML comment (///)? What is the escape character? ie. /// ie. List ...... won't work because is interpreted as a xml element. but I just want to use the '<' and '>' as a comment. Any help greatly appreciated. Thanks in advance Pakl
Did you try using & lt; and & gt; ? Tarakeshwar A conclusion is the place where you got tired of thinking. -- modified at 10:46 Monday 8th May, 2006
-
Did you try using & lt; and & gt; ? Tarakeshwar A conclusion is the place where you got tired of thinking. -- modified at 10:46 Monday 8th May, 2006
Thats it! That easy :-) Thanks a lot!