Exemple #1
0
        public void Remove(string Name)
        {
            using (DbTransaction tran = DbTransaction.Begin())
            {
                DBUser.RemoveProperty(m_UserID, Name);
                m_properties.Remove(Name);

                tran.Commit();
            }
        }