Ejemplo n.º 1
0
        private void TestClone()
        {
            int         hr;
            int         i;
            IComponents it;

            hr = m_comps.Clone(out it);
            DsError.ThrowExceptionForHR(hr);

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

            Debug.Assert(i == 1, "clone");
        }