Search Results

1
vote

Is it ok to call a virtual method from Dispose or a destructor?

I do not believe there is any recommendation against calling virtual methods. The prohibition you are remembering might be the rule against referencing managed objects in the finalizer. The …
0
votes

What is the proper way to ensure a SQL connection is closed when an exception is thrown?

I'm guessing that by "_SqlConnection.State == ConnectionState.Closed" you meant !=. This will certainly work. I think it is more customary to contain the connection object itself inside a …
3
votes

Practical usings of “internal” keyword in C#

If you are writing a DLL that encapsulates a ton of complex functionality into a simple public API, then “internal” is used on the class members which are not to be exposed publicly. Hiding …
6
votes

How to name variables.

One rule I always follow is this: if a variable encodes a value that is in some particular units, then those units have to be part of the variable name. Example: int postalCodeDista …
0
votes

How to name variables.

I learned not to ever use single-letter variable names back in my VB3 days. The problem is that if you want to search everywhere that a variable is used, it's kinda hard to search on a single lette …
0
votes

Where do you put program scope variables in UI driven application?

If I am understanding you correctly, it sounds like the lifetime of your dialog objects is too long. Rather than maintaining the dialogs for the duration of your program, you should consider creati …
0
votes

Do you comment your code?

One thing that should be more clearly highlighted in this discussion is the distinction between code comments and API documentation. Since modern documentation generators work by parsing c …
5
votes

C#: How do I do simple math, with rounding, on integers?

int height2 = (width2 * height1) / width1; …
1
vote

Creating a Catch-All AppToolbox Class - Is this a Bad Practice?

My experience has been that utility functions seldom occur in isolation. If you need a method for formatting telephone numbers, then you will also need one for validating phone numbers, and parsing …
1
vote

C# API Development Exception handling

There are two types of exceptions to consider (ignoring StackOverflowException, etc., which you can't do anything about anyway): Those that are caused by external issues (like file I …