1
vote
2answers
189 views
Hidden Boxing in the BCL?
Recently I became aware that there are some parts in the BCL that still use some "legacy" code that was probably written before generics were introduced in v2.0 of the framework.
A …
3
votes
2answers
83 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;
}
…
1
vote
1answer
62 views
Creating (boxed) primitive instance when the class is known
I need a method that returns an instance of the supplied class type. Let's assume that the supplied types are limited to such that an "empty" instance of them can be created. For i …
2
votes
9answers
414 views
Use cases for boxing a value type in C#?
There are cases when an instance of a
value type needs to be treated as an
instance of a reference type. For
situations like this, a value type
instance can be converted …
0
votes
2answers
25 views
Avoiding unnecessary boxing in DLR
I'm playing with DLR to get a better understanding of it. I'm not completely familiar yet with all its concepts and its terminology so sorry for any terminological or conceptual m …
1
vote
2answers
98 views
C++/CLI: Boxing and Generic Lists
I am trying to create a generic list of references to PointF objects. (No, I am not looking to create a generic list of PointF objects.) However, the following line fails to compil …
10
votes
3answers
190 views
Why does generic method with constaint of T: class result in boxing?
Anyone any idea why a generic method which constrains T to class would have boxing instructions in the generates MSIL code?
I was quite surprised by this since surely since T is b …
0
votes
2answers
62 views
How to determine if type needs to be boxed?
MSDN docs say that only value types need boxing, but this does not apply to string, which is a value type and does not need to be boxed. I initially tried Type.IsValueType, but sin …
2
votes
5answers
291 views
Type Casting an Object using a “Type” Object in C#
This one has proven to be a little tricky for me so far. I am wondering if it is possible to type cast an object using a System.Type object.
I have illustrated below what I mean:
…
2
votes
3answers
68 views
When does a using-statement box its argument, when it’s a struct?
I have some questions about the following code:
using System;
namespace ConsoleApplication2
{
public struct Disposable : IDisposable
{
public void Dispose() { }
…
8
votes
2answers
357 views
C# non-boxing conversion of generic enum to int?
Given a generic parameter TEnum which always will be an enum type, is there any way to cast from TEnum to int without boxing/unboxing?
See this example code. This will box/unbox …
4
votes
5answers
606 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.
1
vote
7answers
747 views
How to convert int[] into List<Integer> in Java?
How do I convert int[] into List<Integer> in Java?
Of course, I'm interested in any other answer than doing it in a loop, item by item. But if there's no other answer, I'll …
5
votes
5answers
508 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
374 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 …
