Ejemplo n.º 1
0
        private void TestRemove()
        {
            int hr;
            int i;

            hr = m_comps.Remove(0);
            DsError.ThrowExceptionForHR(hr);

            hr = m_comps.get_Count(out i);
            DsError.ThrowExceptionForHR(hr);

            Debug.Assert(i == 0, "Remove");
        }