17
votes
6answers
2k views
What is boxing and unboxing and why is it bad?
I'm looking for a clear, concise and accurate answer.
Ideally as the actual answer, although links to good explanations welcome.
8
votes
3answers
347 views
Performance surprise with “as” and nullable types
I'm just revising chapter 4 of C# in Depth which deals with nullable types, and I'm adding a section about using the "as" operator, which allows you to write:
object o = ...;
int? …
5
votes
5answers
510 views
Why do some languages need Boxing and Unboxing ?
Hi,
This is not a question of what is boxing and unboxing,
it is rather why do languages like Java and C# need that ?
I am greatly familiar wtih C++, STL and Boost.
In C++ I cou …
5
votes
5answers
376 views
Boxing vs Unboxing
Hello,
Another recent C# interview question I had was if I knew what Boxing and Unboxing is.
I explained that value types are on Stack and reference types on Heap.
When a value is …
4
votes
5answers
615 views
What is the difference between boxing/unboxing and type casting?
What is the difference between boxing/unboxing and type casting?
Often, the terms seem to be used interchangeably.
3
votes
2answers
86 views
C# compiler + generic code with boxing + constraints
Let's examine the MSIL code generated for the following generic method:
public static U BoxValue<T, U>(T value)
where T : struct, U
where U : class
{
return value;
}
…
3
votes
2answers
316 views
Why can’t I unbox an int as a decimal?
I have an IDataRecord reader that I'm retrieving a decimal from as follows:
decimal d = (decimal)reader[0];
For some reason this throws an invalid cast exception saying that the …
2
votes
3answers
406 views
C# boxing question
First, two examples:
// This works
int foo = 43;
long lFoo = foo;
// This doesn't
object foo = (int)43;
long? nullFoo = foo as long?; // returns null
long lFoo = (long)foo; // th …
1
vote
5answers
166 views
C# Type Inference Gets the Wrong Type
I created the following property, which threw an InvalidCastException if the getter was accessed when ViewState[TOTAL_RECORD_COUNT] was null.
public long TotalRecordCount
{
ge …
1
vote
4answers
162 views
What’s the best approach to solve the c# unboxing exception when casting an object to a valuetype?
I just converted a code snippet from VB.NET to C# and stumbled over this issue.
Consider this code:
Dim x As Integer = 5
Dim y As Object = x
Dim z As Decimal = CType( …
1
vote
5answers
942 views
C#: Cast a object to a unsigned number type using Generics
Hello guys, I'm trying to write some code to convert data from a object type field (come from a DataSet) into it's destination (typed) fields. I'm doing (trying at least) it using
…
1
vote
4answers
119 views
Instantiate “AS” keyword
I've recently started working with JSON and the ExtJs framework and I've come across the following code in an example.
we retrieve the information from the frontend using this:
…
