ATMLUtilitiesLibrary.PropertyManager.GetInstance C# (CSharp) 메소드

GetInstance() 공개 정적인 메소드

public static GetInstance ( ) : PropertyManager
리턴 PropertyManager
        public static PropertyManager GetInstance()
        {
            if (_instance == null)
            {
                lock (SYNC_ROOT)
                {
                    if (_instance == null)
                    {
                        _instance = new PropertyManager();
                    }
                }
            }
            return _instance;
        }