vote up 0 vote down star

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 since that returns true for string, I can't use it to determine whether a type really needs to be boxed. Are there any other methods you are aware of? Is string the only exception?

UPDATE: I made a mistake in my code where I referenced an int and I thought it was a string. String is in fact a value type, thanks for pointing it out guys!

flag

What makes you think that string doesn't have to be boxed to String? – Filip Navara Sep 4 at 21:06
7  
In my world, typeof(string).IsValueType return false. A string is a class. It is not a struct like Int32. – Pierre-Alain Vigeant Sep 4 at 21:11
1  
@Filip: String is a class and is already allocated on the heap, .NET never allocates space off the stack to hold string data. – AnthonyWJones Sep 4 at 21:13
1  
@Filip: What makes you think that string and String are different types? – Jon Skeet Sep 4 at 21:17
Oh shit, Piere, you are right. I was referencering the wrong variable when I was doing the test. – Hermann Sep 4 at 21:18
show 1 more comment

2 Answers

vote up 8 vote down check

Your premise is incorrect. String is actually a reference type which just happens to act like a value type in many scenarios. Type.IsValueType is the most reliable way of determining if a value would need to be boxed or not.

I'd be careful if you work with nullable values though.

link|flag
Yeah, you're right. I just noticed I had a bug in my code where I referenced an int while I thought it was a string. – Hermann Sep 4 at 21:19
vote up 0 vote down

Are you writing raw IL? That's the only case in which you'll have to concern yourself with boxing.

link|flag
1  
Never done any performance critical code? – Stephan Eggermont Sep 4 at 21:11
Yes, I am in fact writing raw IL, that's why I was asking. – Hermann Sep 4 at 21:13
Don't forget Hermann, that ints are i4 intrinsics and can often be operated on as intrinsics, without the boxing. – unknown (yahoo) Sep 4 at 21:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.