Exemplo n.º 1
0
        public void DoTests()
        {
            int hr;
            int i;
            IAuxInTuningSpace2 loc = new AuxInTuningSpace() as IAuxInTuningSpace2;

            hr = loc.put_CountryCode(123);
            DsError.ThrowExceptionForHR(hr);

            hr = loc.get_CountryCode(out i);
            DsError.ThrowExceptionForHR(hr);

            Debug.Assert(i == 123, "CountryCode");
        }
Exemplo n.º 2
0
        public void DoTests()
        {
            IAuxInTuningSpace loc = new AuxInTuningSpace() as IAuxInTuningSpace;

            Debug.Assert(loc != null, "IAuxInTuningSpace");
        }