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 CS1524

Expected catch or finally

A try block must be followed by a catch or finally block.

The following sample generates CS1524:

class x {
   public static void Main() {
      try {
         // Code here
      } catch {
}
      try {
         // Code here
      } finally {
}
      try {
         // Code here
      }
   }   // CS1524, missing catch or finally
}

See Also

Exception Handling Statements