Create a switch for ASP.Net objects
- in C#
In my opinion one of the most underused tools in a coders tool belt is the “switch” statement because it can be much faster than using several “if” statements and a lot easier to read.…
a little philosophy in code
In my opinion one of the most underused tools in a coders tool belt is the “switch” statement because it can be much faster than using several “if” statements and a lot easier to read.…
I am trying to figure out the best practice for accessing settings from the app config file or the web config. I have seen at least a couple of different approaches to this and I…
In a project I am working on I need to make use of the UPS API. I could do this in the code directly without much trouble, but in an attempt to be “best practice”…