Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 178255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T14:11:57+00:00 2026-05-11T14:11:57+00:00

I have a class that instantiates a COM exe out of process. The class

  • 0

I have a class that instantiates a COM exe out of process. The class is

public class MyComObject:IDisposable {     private bool disposed = false;     MyMath test;      public MyComObject()     {         test = new MyMath();     }      ~MyComObject()     {         Dispose(false);     }      public double GetRandomID()     {         if (test != null)             return test.RandomID();         else             return -1;     }      public void Dispose()     {         Dispose(true);          GC.SuppressFinalize(this);     }      private void Dispose(bool disposing)     {        if (test != null)        {            Marshal.ReleaseComObject(test);            test = null;        }         disposed = true;     } } 

and I call it as follows

static void Main(string[] args)     {         MyComObject test = new MyComObject();         MyComObject test2 = new MyComObject();          //Do stuff          test.Dispose();         test2.Dispose();          Console.ReadLine();     } 

now, this cleans up my COM object when the program executes normally. However, if I close the program in the middle of its execution, the framework doesn’t ever call the code that releases my unmanaged object. Which is fair enough. However, is there a way to force the program to clean itself up even though its been killed?

EDIT: it doesn’t look promising from a hard kill from the taskmanager 🙁

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T14:11:57+00:00Added an answer on May 11, 2026 at 2:11 pm

    Wrapping it in a try finally or using clause will get you most of the way there:

    using (MyComObject test = new MyComObject()) using (MyComObject test2 = new MyComObject()) {     // do stuff } Console.ReadLine(); 

    The specifics of how your app is being shutdown, though, will dictate any other measures you can do (like using CriticalFinalizerObject).

    I think that a console app that gets closed (from the little x) is the same as a Ctrl-C – in which case you can subscribe to Console.CancelKeyPress for that.

    Edit: You should also ReleaseComObject until it returns <= 0.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 77k
  • Answers 77k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Yep, set the blend for the Brush. LinearGradientBrush blendBrush =… May 11, 2026 at 3:20 pm
  • added an answer Server side: Read the website f.ex every minute and save… May 11, 2026 at 3:20 pm
  • added an answer For the '/#{path}/Default.aspx' part, use: Page.ResolveUrl('~/Default.aspx') If you need more:… May 11, 2026 at 3:20 pm

Related Questions

I have a .NET web-service client that has been autogenerated from a wsdl-file using
I have the following xml I'd like to deserialize into a class <?xml version=1.0
I am developing an auto-builder that will run a series of steps in our
In Java (And in general) is there a way to make a class so

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.