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 Warning (level 1) CS1570

XML comment on 'construct' has badly formed XML -- 'reason'

When using /doc, any comments in the source code must be in XML. Any error with your XML markup will generate CS1570. For example:

The following sample generates CS1570:

namespace ns {
// the following line generates CS1570
/// <summary> returns true if < 5 </summary>
// try this instead
// /// <summary> returns true if &lt;5 </summary>

   public class MyClass {
      public static void Main () {
      }
   }
}