Search Results

5
votes

What is the optimal way to organize shared .net assemblies in SVN?

What we did at our company was to set up a tools repository, and then a project repository. The tools repository is a Subversion repository, orga …
2
votes

Detecting what the target object is when NullReferenceException is thrown.

At the point where the NRE is thrown, there is no target object -- that's the point of the exception. The most you can hope for is to trap the file and line number where the exception occurred. I …
0
votes

What port # should I used when testing connections in my local intranet in .Net?

If your goal is just to open a TCP connection to a Windows machine (XP/Vista/2003/2008), without having to stand up your own service, then you aren't going to break anything if you open up a connec …
5
votes

What is the best way to use assembly versioning attributes?

On my current project, we use the Subversion revision number as the least significant (build) part of the version number, and we use a Nant script to create the project AssemblyInfo file. We use t …
2
votes

Validate String against USPS State Abbreviations

I like something like this: private static String states = "|AL|AK|AS|AZ|AR|CA|CO|CT|DE|DC|FM|FL|GA|GU|HI|ID|IL|IN|IA|KS|KY|LA|ME|MH|MD|MA|MI|MN|MS|MO|MT|NE|NV|NH|NJ|NM|NY|NC|ND|MP| …