Speaking from experience, .Net has a tendency to spoil us developers. In this post i'm going to talk about one of those scenarios, Boxing/Unboxing. If you're a C# programmer, and you have no idea what i mean by Boxing/Unboxing that proves my point :). For those of you who are unfamiliar with these terms: Boxing : Taking a value type (int, float, bool, struct, etc...) and placing it into a reference type container such as an object. object obj = 234; Unboxing : Taking that boxed reference...(read more)
↧