Over the past few years, really since the .Net framework was introduced, there has been much debate and false statements and beliefs surrounding the various .Net languages. I probably should have classified this as a rant, but I have legitimate concerns about how one language is treated differently than...
Entries tagged 'c' ↓
VB.Net - We should all B# (be sharp)
Wednesday, March 10 2010 - .Net
Boxing and Unboxing
Monday, February 08 2010 - .Net
Boxing and Unboxing Are you moving? Need a rental truck? Oh, you’re talking about “Boxing” as in converting value types to reference types. An example of boxing: 'Implicit boxing VB Dim x as Int16 = 5 Dim obj as Object = x //Implicit boxing C# Int16 x = 5; object obj = x; 'Explicit...