Application Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the Application class.
public:
Application();
[System.Security.SecurityCritical]
public Application ();
public Application ();
Public Sub New ()
- Attributes
Exceptions
More than one instance of the Application class is created per AppDomain.
Remarks
Only one instance of the Application class can be created per AppDomain, to ensure shared access to a single set of application-scope window, property, and resource data. Consequently, the parameterless constructor of the Application class detects whether the instance being initialized is the first instance in an AppDomain; if it is not, an InvalidOperationException is thrown.
The Application object for the current AppDomain is exposed from the static Current property.