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!

<example>

<example>description</example>

where:

description
A description of the code sample.

Remarks

The <example> tag lets you specify an example of how to use a method or other library member. Commonly, this would involve use of the <code> tag.

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

Example

public class MyClass {
   /// <example> This sample shows how to call the GetZero method.
   /// <code>
   ///   class MyClass {
   ///      public static int Main() {
   ///         return GetZero();
   ///      }
   ///   }
   /// </code>
   /// </example>
   public static int GetZero() {
      return 0;
   }

   public static void Main () {
   }
}

See Also

Tags for Documentation Comments