Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            // Create the ATL coclass.
            TheBrokenObjectClass b = new TheBrokenObjectClass();

            // Trigger the errors.
            try
            {
                b.ReturnFailedHRESULT();
            }
            catch (COMException comEx)
            {
                ReportCOMError(comEx);
            }
            try
            {
                b.ReturnComErrorObject();
            }
            catch (COMException comEx)
            {
                ReportCOMError(comEx);
            }
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            // Create the ATL coclass.
            TheBrokenObjectClass b = new TheBrokenObjectClass();

            // Trigger the errors.
            try
            {
                b.ReturnFailedHRESULT();
            }
            catch(COMException comEx)
            {
                ReportCOMError(comEx);
            }
            try
            {
                b.ReturnComErrorObject();
            }
            catch(COMException comEx)
            {
                ReportCOMError(comEx);
            }
        }