top of page

What a .NET programmer should bear in mind about the .NET programming framework

A .NET programmer knows that it would be a mistake to break the stack unnecessarily when re-throwing an exception. This continues to be a very common mistake and often when doing code reviews today. Another mistake in .NET programming is not use dispose objects. When you initialize an IDisposable object, it is a good idea to practice initiating it in a using statement to make sure the object is disposed properly. Failing to unhook event handlers correctly after writing them is another mistake. This is because each event registration could cause a reference to be created from the event source to the object handling it.

    For more details, Visit this page:

    http://darrellewis.weebly.com/

HOME
bottom of page