#region "Singleton" private static ClasseBO _getInstance = null; private static object _syncRoot = new object(); public static ClasseBO GetInstance { get { if (_getInstance == null) lock (_syncRoot) if (_getInstance == null) _getInstance = new ClasseBO (); return _getInstance; } } #endregion