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!

Compiler Error CS1036

( or . expected

The XML in a doc comment was badly formed.

The following sample generates CS1036:

using System;
/// <seealso cref="System.String*"/>   // CS1036
// try the following line instead
/// <seealso cref="System.String"/>
public class Test {
    public static void Main() {
    }
}