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!

<remarks>

<remarks>description</remarks>

where:

description
A description of the member.

Remarks

The <remarks> tag is where you should specify the bulk of the description for the member. <summary> is where you can specify a brief description.

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

Example

public class MyClass {
   /// <remarks>MyMethod is a method in the MyClass class.
   /// <para>Here's how you could make a second paragraph in a description. <see cref="System.Console.WriteLine"/> for information about output statements.</para>
   /// <seealso cref="MyClass.Main"/>
   /// </remarks>
   public static void MyMethod(int Int1) {
   }

   public static void Main () {
   }
}

See Also

Tags for Documentation Comments