ATMLUtilitiesLibrary.PropertyManager.GetInstance C# (CSharp) Méthode

GetInstance() public static méthode

public static GetInstance ( ) : PropertyManager
Résultat PropertyManager
        public static PropertyManager GetInstance()
        {
            if (_instance == null)
            {
                lock (SYNC_ROOT)
                {
                    if (_instance == null)
                    {
                        _instance = new PropertyManager();
                    }
                }
            }
            return _instance;
        }