Exemplo n.º 1
0
        public static void Remove(this TrashProfile profile)
        {
            if (profile == null)
            {
                return;
            }

            if (Profiles.ContainsKey(profile.Owner))
            {
                Profiles.Remove(profile.Owner);
            }

            profile.Delete();
        }