Browse by Tags
All Tags »
.NET (RSS)
I ran into a problem the other day at work where I had put in an assert to verify that a timer I was using was not being called back too early. The timer interval was adjusted depending on user interaction and I just wanted to make sure interval
Read More...
What's the Assembly Version Good For? Using assembly version is a wonderful way for someone to help maintain and support their applications. It is defined in the AssemblyInfo.cs file through an attribute. You can manually update it
Read More...
Lazy loading in properties is very common. It is a relativity simple concept of only loading the data you once you actually need it, instead of front loading it all. Though the problem with doing this all over the place is that you end up
Read More...
Exception based logic is one of those things that actually makes me cringe when I see it. Often times it is really easy to avoid like in the case below. Believe it or not, exceptions in .NET aren't cheap and shouldn't be taken for granted.
Read More...