Possible Duplicate:
String vs string in C#

I have a test in C# code I'm reading:

if (variable is string)

I am wondering if this is strictly equivalent to:

if (variable is String)

or if some esoteric behavior of C# autoboxing may cause these tests to behave differently.

link|improve this question

There's no boxing here. Boxing only applies to value types, and System.String (and thus its alias string) is a reference type. – dlev Aug 19 '11 at 14:52
Ah, my apologies, I did not search hard enough. – Kheldar Aug 19 '11 at 15:21
feedback

closed as exact duplicate by Stuart Dunkeld, Joe, dlev, sehe, Ferruccio Aug 19 '11 at 14:51

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 2 down vote accepted

They are exactly the same - string is an alias for System.String.

link|improve this answer
feedback

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