コード例 #1
0
ファイル: ILocatorTest.cs プロジェクト: ewin66/DirectShow.NET
        private void TestClone()
        {
            int      hr = 0;
            ILocator newObj;

            hr = locator.Clone(out newObj);
            DsError.ThrowExceptionForHR(hr);

            Debug.Assert((newObj != null), "ILocator.Clone");

            Marshal.ReleaseComObject(newObj);
        }