MSIR.0807 Can't declare (meth) after (meth) already invoked: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Created page with "A <tt>Constructor</tt> or <tt>Disallow</tt> statement in a <tt>Public</tt> or <tt>Private</tt> block specified a <tt>New</tt> or <tt>Discard</tt> method, after such a method had ...")
 
m (1 revision)
(No difference)

Revision as of 16:45, 9 November 2010

A Constructor or Disallow statement in a Public or Private block specified a New or Discard method, after such a method had already been explicitly invoked. Since these methods exist for all classes, whether or not they're declared, it is possible to use them before they are declared. However, as this message indicates. such a use is invalid. Make sure the class's Public or Private block is declared before any code that uses a New or Discard message.

An Auto New setting on a variable declaration is considered an invocation of the New method so an Auto New object should be declared after the Public and Private blocks for its class.