up vote 258 down vote favorite
67
share [g+] share [fb]

In C# the string keyword (highlighted in Visual Studio as a data type) is just a shortcut to the String class right?

In that case, it would be the same to use either while coding from the semantic point of view. However, is it the same from the performance point of view? I mean, when the mapping is performed: during compilation (I guess so), during compilation or during JIT compilation in execution?

Or maybe this is all wrong: string and String are not the same thing in C# so there are some situations where they cannot be interchanged

link|improve this question

1  
It is easier to output the fully qualified type name when writing a code generator, since otherwise keyword types would require special handling (which also would only be applicable to C#). – Merlyn Morgan-Graham Mar 16 '11 at 6:16
feedback

14 Answers

up vote 424 down vote accepted

Just for the sake of completeness, here's a brain dump of related information...

As others have noted, string is an alias for System.String. They compile to the same code, so at execution time there is no difference whatsoever. This is just one of the aliases in C#. The complete list is:

  • object: System.Object
  • string: System.String
  • bool: System.Boolean
  • byte: System.Byte
  • sbyte: System.SByte
  • short: System.Int16
  • ushort: System.UInt16
  • int: System.Int32
  • uint: System.UInt32
  • long: System.Int64
  • ulong: System.UInt64
  • float: System.Single
  • double: System.Double
  • decimal: System.Decimal
  • char: System.Char

Apart from string, object, the aliases are all to value types. decimal is a value type, but not a primitive type in the CLR. The only primitive type which doesn't have an alias is System.IntPtr.

In the spec, the value type aliases are known as "simple types". Literals can be used for constant values of every simple type; no other value types have literal forms available. (Compare this with VB, which allows DateTime literals, and has an alias for it too.)

There is one circumstance in which you have to use the aliases: when explicitly specifying an enum's underlying type. For instance:

public enum Foo : UInt32 {} // Invalid
public enum Bar : uint   {} // Valid

Finally, when it comes to which to use: personally I use the aliases everywhere for the implementation, but the CLR type for any APIs. It really doesn't matter too much which you use in terms of implementation - consistency among your team is nice, but no-one else is going to care. On the other hand, it's genuinely important that if you refer to a type in an API, you do so in a language neutral way. A method called "ReadInt32" is unambiguous, whereas a method called "ReadInt" requires interpretation. The caller could be using a language which defines an "int" alias for Int16, for example. The .NET framework designers have followed this pattern, good examples being in the BitConverter, BinaryReader and Convert classes.

link|improve this answer
5  
The inheritance situation with enum is interesting. Can you point to documentation onto why alias must be used for enumerations? Or is this a known bug? – JaredPar Oct 19 '08 at 2:00
8  
It's in section 14.1 of the spec (I can't quote here easily as it's too long). It doesn't explicitly say that you've got to use the alias, but the aliases are sort of treated as their own types. It's all a bit weird. – Jon Skeet Oct 19 '08 at 6:34
2  
"the aliases are all to value types" is said twice about different sets of aliases. Can't be true both times %) – Yacoder May 11 '10 at 17:08
122  
OMG! Jon Skeet answer... MUST ... CLICK ... UP ARROW!!! – PiPeep Jul 1 '10 at 18:57
3  
@PiPeep what's more astounding than the large amount of upvotes is the staggering low amount of downvotes (consider the top 5 posts have a total of over 2000 upvotes, and yet only 1 downvote amongst them all). Especially when you factor in the notion that there's always "haters" in any community, I really find that simply incredible. – glowcoder Sep 9 '11 at 21:27
show 9 more comments
feedback

String stands for System.String and it is a .NET Framework type. string is an alias in the C# language for System.String. Both of them are compiled to System.String in IL (Intermediate Language), so there is no difference. Choose what you like and use that. If you code in C#, I'd prefer string as it's a C# type alias and well-known by C# programmers.

I can say the same about (int, System.Int32) etc..

link|improve this answer
feedback

It's been covered above; however, you can't use string in reflection; you must use String.

link|improve this answer
feedback

string and String are identical in all ways (except the uppercase "S"). There are no performance implications either way.

Lowercase string is preferred in most projects due to the syntax highlighting

link|improve this answer
Jeffrey Richter recommends using the CLR type in all cases (CLR via C#) to avoid exactly the kind of confusion that is taking place here. – Josh Oct 18 '08 at 17:02
Clearly, whether you use S or s it will have caused this questions, so down-vote Richter. ;) – Brad Wilson Oct 18 '08 at 17:17
2  
Richter is certainly a legend, and CLR via C# is wonderful - but that doesn't mean his opinions should be seen as ultimate truth :) (For an example, see msmvps.com/blogs/jon_skeet/archive/2008/10/08/…) – Jon Skeet Oct 18 '08 at 19:34
1  
@kirk.burleson: Not at all. I have a lot of respect for Richter - but why should that mean we have to agree with him on every point? – Jon Skeet Sep 16 '11 at 5:24
2  
"string" is not the same as "String". Is means "System.String". So if you use "String" you have to put "using System" to include the namespace – ThiagoAlves Dec 3 '11 at 16:41
show 4 more comments
feedback

string is just an alias for System.String. The compiler will treat them identically.

The only practical difference is the syntax highlighting as you mention, and that you have to write using System if you use String.

link|improve this answer
You don't need to prefix System to use String. – Joe R Oct 18 '08 at 19:24
9  
You do have to include a using System when using String, otherwise you get the following error: The type or namespace name 'String' could not be found (are you missing a using directive or an assembly reference?) – Ronald Oct 16 '09 at 17:53
+1 for mentioning the need to "use" System in order to use String. – phoog Dec 29 '11 at 19:51
feedback

As the others are saying, they're the same. StyleCop rules, by default, will enforce you to use string as a C# code style best practice, except when referencing System.String static functions, such as String.Format, String.Join, String.Concat, etc...

link|improve this answer
2  
I wasn't aware that StyleCop would flag String use - except for static methods. I think that is great as that is how I always use it: string for type declarations and String when I access the static members. – Goyuix May 5 '11 at 18:41
feedback

Both are same. But from coding guidelines perspective it's better to use string instead of String. This is what generally developers use. e.g. instead of using Int32 we use int as int is alias to Int32 FYI “The keyword string is simply an alias for the predefined class System.String.” - C# Language Specification 4.2.3 http://msdn2.microsoft.com/En-US/library/aa691153.aspx

link|improve this answer
feedback

I just wrote a short article on this topic, including a response from Juval Löwy (of IDesign, creator of the C# coding standard). It says it all!

Check it out on this link.

link|improve this answer
This is exactly what I thought. However, someone whose opinion I respect, argued that "you should always give the compiler as much information as possible", to indicate that I should use string.Empty instead of String.Empty. Thanks for giving me more info on this. – Gustavo Mori Oct 25 '11 at 21:41
feedback

This question was essentially covered here and here already.

link|improve this answer
1  
In this case the question was aimed most at performance/compilation considerations. I think those questions you mentioned were more general. – Toto Oct 19 '08 at 0:56
Sure, I got the gist of your question. Just trying to tie similar questions together because there were answers given in both of those which one could argue answer your question here. SO still needs some work to better 'tie' these questions together so I provided the links. No worries. – itsmatt Oct 19 '08 at 10:36
feedback

String is not a keyword and it can be used as Identifier whereas string is a keyword and cannot be used as Identifier. And in function point of view both are same.

link|improve this answer
feedback

Against what seems to be common practice among other programmers, I prefer String over string, just to highlight the fact that String is a reference type, as Jon Skeet mentioned.

link|improve this answer
feedback

There is no difference between the two - string, however, appears to be the preferred option when considering other developers' source code.

link|improve this answer
feedback

Basically, there is no difference between String and string, string is an alias of System.String in System namespace and both generate same Intermediate Language(IL).

The relation between String and string is as the relation between Int32 and int.

link|improve this answer
1  
Have you read the accepted answer? In what way do you feel that this answer contributes? – vidstige Nov 19 '11 at 9:53
You're right vidstige, thanks for your update. – Elias Hossain Nov 21 '11 at 16:54
feedback

There is a difference, and you should use string. Check:

A string is a sequential collection of Unicode characters, typically used to represent text, while a String is a sequential collection of System.Char objects that represents a string.

link|improve this answer
7  
Pl. provide any reference for your quote? – devcoder Jun 22 '11 at 7:11
feedback

Your Answer

 
or
required, but never shown

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