Quantcast
Channel: Infragistics Community
Viewing all articles
Browse latest Browse all 2374

Going From C# To Objective-C: Boxing and Unboxing

$
0
0
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)

Viewing all articles
Browse latest Browse all 2374

Trending Articles