Welcome to MSDN Blogs Sign in | Join | Help

jaredpar's WebLog

Code, rants and ramblings of a programmer.

Browse by Tags

All Tags » C# » Gotcha   (RSS)
When can you catch a StackOverflowException?
Answer: When you're the one who threw it.  Starting with the CLR version 2.0, the policy for handling a StackOverflowException was changed.  User code can no longer handle the exception[1].  Instead the CLR will simply terminate the process.  Read More...

Posted Wednesday, October 22, 2008 8:00 AM by Jared Parsons | 0 Comments

Filed under: , ,

A Lesson in Serialization
A few days ago, I recklessly added a [Serialization] attribute to a few of my immutable collection types.  I needed to pass data between AppDomain's and adding [Serialization] was the quick and dirty fix.  Compiled, ran and I didn't think much Read More...

Posted Tuesday, September 02, 2008 8:00 AM by Jared Parsons | 2 Comments

Filed under: , , ,

Don't mix using statements and lambda expressions
Title pretty much says it all but what good is a rule without any explanation. The main issue here is that at the core, using statements and lambda expressions both alter variable lifetimes. Unfortunately they alter the lifetime in different directions. Read More...

Posted Wednesday, July 16, 2008 8:00 AM by Jared Parsons | 14 Comments

Filed under: ,

Immutability and ReadOnlyCollection<T>
I am a huge fan of read only/immutable collections and data. Hopefully the increased exposure through the blogosphere alerted users to the advantages of this type of programming for the appropriate scenarios. I wanted to discuss ReadOnlyCollection<T> Read More...

Posted Tuesday, April 22, 2008 8:42 AM by Jared Parsons | 1 Comments

Filed under: , , ,

Gotcha: Generic overload resolution when called generically
Both VB and C# have a feature of generic overload resolution that is fairly helpful and yet a source of gotchas. Lets say you have two methods with the same number of arguments. One method has arguments with generic types and the other does not. For Example: Read More...

Posted Monday, April 14, 2008 8:30 AM by Jared Parsons | 1 Comments

Filed under: , ,

Page view tracker