Ejemplo n.º 1
0
    public static void Remove(System.Guid guid)
    {
        if (Instance == null)
        {
            Instance = new GuidManager();
        }

        Instance.InternalRemove(guid);
    }
Ejemplo n.º 2
0
    public static void Remove(Guid guid)
    {
        if (_instance == null)
        {
            _instance = new GuidManager();
        }

        _instance.InternalRemove(guid);
    }