The <c> tag is used to indicate that text within a description should be marked as code.
<c>text</c>
where:
- text
- The text you would like to indicate as code.
Applies To
Can be used inline within any other markup.
Remarks
Use <code> to indicate multiple lines as code.
Example
[C#] public class MyClass { /// <summary> /// <c>MyMethod</c> is a method in the <c>MyClass</c> class. /// </summary> public static void MyMethod(int Int1) { } }