Ejemplo n.º 1
0
        /// <summary>
        /// Get default instance
        /// </summary>
        /// <returns></returns>
        internal static AzureDevOpsIntegration GetCurrentInstance()
        {
            if (_instance == null)
            {
                lock (myLock)
                {
                    if (_instance == null)
                    {
                        _instance = new AzureDevOpsIntegration();
                    }
                }
            }

            return(_instance);
        }