NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

<c>

<c>text</c>

where:

text
The text you would like to indicate as code.

Remarks

The <c> tag gives you a way to indicate that text within a description should be marked as code. Use <code> to indicate multiple lines as code.

Compile with /doc to process documentation comments to a file.

Example

public class MyClass {
   /// <remarks><c>MyMethod</c> is a method in the <c>MyClass</c> class.
   /// </remarks>
   public static void MyMethod(int Int1) {
   }

   public static void Main () {
   }
}

See Also

Tags for Documentation Comments