AuScGen.WhiteFramework.GUIMapParser.GlobalGuiCollection.getInstance C# (CSharp) Method

getInstance() public static method

Gets the instance.
public static getInstance ( ) : GlobalGuiCollection
return GlobalGuiCollection
        public static GlobalGuiCollection getInstance()
        {
            if (null == globalCollection)
            {
                globalCollection = new GlobalGuiCollection();
                return globalCollection;
            }
            return globalCollection;
        }
    }
GlobalGuiCollection