Search Results

5
votes
3answers
764 views

How best to communicate between AppDomains?

I have an application that needs to send a moderately high volume of messages between a number of AppDomains. I know that I could implement this using remoting, but I have also noticed that there …
5
votes
5answers
234 views

What are finalisers for?

I have been programming in .NET for four years (mostly C#) and I use IDiposable extensively, but I am yet to find a need for a finaliser. What are finalisers for? …
3
votes
5answers
310 views

How to detect .Net application type?

I have a library that needs to respond to exceptions in different ways depending on whether it is running in a Console app, WinForms, AspNet or Windows Service. I have experimented with looking at …
11
votes

Hidden Features of C#?

Several people have mentioned using blocks, but I think they are much more useful than people have realised. Think of them as the poor man's AOP tool. I have a host of simple objects th …
0
votes

Problem with icon on creating new maximized MDI child form in .NET

I found that the only solution was to deactivate and then reactivate the MDI child: document.Show(); // Work-around for error in WinForms that causes MDI children to be loaded with …