Get an instance of the class using the singleton pattern for maximum performance

The class can be used directly like a static class without being instantiated

Singleton pattern - http://en.wikipedia.org/wiki/Singleton_pattern

Implementing the Singleton Pattern - http://www.yoda.arachsys.com/csharp/singleton.html

The singleton pattern VS static classes - http://dotnet.org.za/reyn/archive/2004/07/07/2606.aspx

Namespace:  MicroMighty.SDK.Net.Helpers
Assembly:  MicroMighty.SDK.Net (in MicroMighty.SDK.Net.dll)

Syntax

Visual Basic (Declaration)
Public Shared ReadOnly Property Get As ApplicationState
C#
public static ApplicationState Get { get; }
Visual C++
public:
static property ApplicationState^ Get {
	ApplicationState^ get ();
}
JavaScript
MicroMighty.SDK.Net.Helpers.ApplicationState.get_get = function();

See Also