In C#, what is the difference between String and string? (note the case)
Example:

string s = "Hello, World";

String S = "Hello, World";

Also, what are the guidelines for the use of each?

link|improve this question

66% accept rate
49  
The answers to most SO questions could be found on Google, but that's not the point, is it? – Winston Smith Jun 21 '09 at 10:25
43  
Searching Google for "what is the difference between a String and a string" brings you here :) I actually posted this during the beta when I was trying to come up with a bunch of questions. – Lance Fisher Jun 22 '09 at 16:01
73  
For future's sake - the only reason stuff shows up on Google is because someone wrote it, and Google found it. Stackoverflow should be the definitive source for high quality answers to any programming question. I'm glad this was asked, and I'm glad that it is coming up on Google. That is how it should be. – Michael Shimmins Jan 28 '11 at 10:27
2  
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
1  
I have to say I dislike "string" (and "object") because to my eye they imply they are value data types instead of reference data types. Probably just my Java background showing through, as I would greatly prefer if there was also a different naming paradigm for structs. – Tom West Dec 7 '11 at 20:38
feedback

27 Answers

up vote 330 down vote accepted

string is an alias for System.String. So technically, there is no difference. It's like int vs. System.Int32.

As far as guidelines, I think it's generally recommended to use string any time you're referring to an object. e.g.

string place = "world";

Likewise, I think it's generally recommended to use String if you need to refer specifically to the class. e.g.

string greet = String.Format("Hello {0}!", place);

This is the style that Microsoft tends to use in their examples.


It appears that the guidance in this area may have changed, as StyleCop now enforces the use of the C#-specific aliases.

link|improve this answer
24  
+1: string.Format() always looks strange to me. – Dan Feb 11 '10 at 0:15
9  
+1 I agree. It looks too much like phP. Very sloppy/ lazy... – anon271334 Sep 24 '10 at 6:38
12  
I don't remember seeing that "general recommendation" anywhere, to be honest. Personally I tend to use string everywhere... – Jon Skeet Feb 12 at 16:34
3  
@JonSkeet, I've seen this general guideline a few places. e.g. en.csharp-online.net/CSharp_String_Theory—string_versus_String. And as I mentioned, many of Microsoft's code samples follow this style. It's defintely not universally agreed-upon, though. – Derek Park Feb 12 at 18:00
1  
If you decide to use StyleCop and follow that, that will say to use the types specific to the language. So for C# you'll have string (instead of String), int (instead of Int32), float (instead of Single) - stylecop.soyuz5.com/SA1121.html – Dominic Zukiewicz May 22 at 22:36
show 3 more comments
feedback

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
6  
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
11  
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
239  
OMG! Jon Skeet answer... MUST ... CLICK ... UP ARROW!!! – PiPeep Jul 1 '10 at 18:57
4  
@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. – corsiKa Sep 9 '11 at 21:27
4  
@JonSkeet I'm very late to the party, but sec 14.1 of C# version 4 spec does explicitly say you must use the alias: "enum-base" is defined as "integral-type", which is in turn (Appendix B, Grammar) is defined as the alias keywords. – phoog Dec 29 '11 at 19:48
show 11 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

The best answer I have ever heard about using the provided type aliases in C# comes from Jeffrey Richter in his book CLR Via C#. Here are his 3 reasons:

  • I've seen a number of developers confused, not knowing whether to use string or String in their code. Because in C# the string (a keyword) maps exactly to System.String (an FCL type), there is no difference and either can be used.
  • In C#, long maps to System.Int64, but in a different programming language, long could map to an Int16 or Int32. In fact, C++/CLI does in fact treat long as an Int32. Someone reading source code in one language could easily misinterpret the code's intention if he or she were used to programming in a different programming language. In fact, most languages won't even treat long as a keyword and won't compile code that uses it.
  • The FCL has many methods that have type names as part of their method names. For example, the BinaryReader type offers methods such as ReadBoolean, ReadInt32, ReadSingle, and so on, and the System.Convert type offers methods such as ToBoolean, ToInt32, ToSingle, and so on. Although it's legal to write the following code, the line with float feels very unnatural to me, and it's not obvious that the line is correct:
BinaryReader br = new BinaryReader(...);
float val  = br.ReadSingle(); // Ok, but feels unnatural
Single val = br.ReadSingle(); // OK and feels good

So there you have it. I think these are all really good points. I however, don't find myself using Jeffrey's advice in my own code. Maybe I am too stuck in my C# world but I end up trying to make my code look like the framework code.

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
3  
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

There IS one difference - you can't use String without "using System;" beforehand.

link|improve this answer
8  
you can if you drop a "using System;" at the top of your file. – Kevlar Dec 19 '08 at 19:04
by default most people do add this in any ways at the top of the file. VS does this by default in most cases of not all! – IbrarMumtaz Apr 6 '10 at 16:10
feedback

string is a reserved word, but String is just a class name. This means that 'string' cannot be used as a variable name by itself.

For instance if for some reason you were doing this :

StringBuilder String = new StringBuilder();  // compiles
StringBuilder string = new StringBuilder();  // doesn't compile

If you really want a variable name called 'string' you can use @ as a prefix :

StringBuilder @string = new StringBuilder();

Another critical difference : Stackoverflow highlights them differently.

link|improve this answer
11  
+1, I always write code with stackoverflow's syntax highlighter in mind ;) – grantman16 Jul 1 '11 at 20:32
feedback

Valters, you cannot establish global aliases in the style of string, int, etc. so far as I know. However, you can do more localized aliasing for types and namespaces with the using keyword.

e.g.

using str = System.String;
//...
str s = "Now you've got another alias for string!";

See here: using Directive (C# Reference)

link|improve this answer
feedback

'System.String' is THE .net string class - in C# 'string' is an alias for System.String - so in use they are the same.

As for guidelines I wouldn't get too bogged down and just use whichever you feel like - there are more important things in life and the code is going to be the same anyway.

If you find yourselves building systems where it is necessary to specify the size of the integers you are using and so tend to use Int16, Int32, UInt16, UInt32 etc. then it might look more natural to use String - and when moving around between different .net languages it might make things more understandable - otherwise I would use string and int.

link|improve this answer
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
10  
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

C# is a language which is used together with the CLR.

string is a type in C#.

System.String is a type in the CLR.

When you use C# together with the CLR string will be mapped to System.String.

Theoretically, you could implement a C#-compiler that generated Java bytecode. A sensible implementation of this compiler would probably map string to java.lang.String in order to interoperate with the Java runtime library.

link|improve this answer
string is not a type in C#; it is a reserved word that maps to a type in the CLR. – CesarGon Jul 31 '11 at 17:58
@CesarGon: According to ECMA-334, section 8.2.1: "C# provides a set of predefined types [...] The predefined reference types are object and string." – Rasmus Faber Jul 31 '11 at 19:03
According to ECMA-334, section 9.4.3, "string" is a keyword. :-) I agree with you that "string" is a type if you focus on the semantics, but I'd say it's a keyword (i.e. a reserved word) if you focus on the syntax. The standard backs both points of view (perhaps too ambiguously!). To me, the OP is about syntax, so I tend to focus on syntax when I look at answers, but I see your point too. Furthermore, your answer, as it stands, may be interpreted as to mean that two different types exist: string and String, when that is not the case. One is a maping to the other. – CesarGon Jul 31 '11 at 19:30
feedback

I prefer the capitalized .NET types (rather than the aliases) for formatting reasons. The .NET types are colored the same as other object types (the value types are proper objects, after all).

Conditional and control keywords (like 'if', 'switch', and 'return') are lowercase and colored dark blue (by default). And I would rather not have the disagreement in use and format.

link|improve this answer
1  
This is why I always use String and not string. – Otiel Sep 28 '11 at 15:13
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

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

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

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

Lower case string is an alias for System.String. They are the same in C#.

There's a debate over whether you should use the System types (System.Int32, System.String, etc.) types or the C# aliases (int, string, etc). I personally believe you should use the C# aliases, but that's just my personal preference.

link|improve this answer
feedback

Using System types makes it easier to port between C# and VB.Net, if you are into that sort of thing.

link|improve this answer
1  
I'm just planning to start using String because of switching between C#/Java... – kape123 Jan 29 '10 at 20:38
1  
Converting between C# and VB.NET is easy enough as it is. developerfusion.com/tools/convert/vb-to-csharp – grantman16 Jul 1 '11 at 20:35
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

There is no difference.

The C# keyword string maps to the .NET type System.String - it is an alias that keeps to the naming conventions of the language.

Similarly, int maps to System.Int32.

link|improve this answer
@pst - fair point, answer updated. – Oded Jan 14 at 22:50
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

‘string’ is an alias (or shorthand) of System.String. That means, by typing ‘string’ we meant System.String. You can read more in think link: 'string' is an alias/shorthand of System.String.

link|improve this answer
feedback

I'd just like to add this to lfousts answer, from Ritchers book:

The C# language specification states, “As a matter of style, use of the keyword is favored over use of the complete system type name.” I disagree with the language specification; I prefer to use the FCL type names and completely avoid the primitive type names. In fact, I wish that compilers didn’t even offer the primitive type names and forced developers to use the FCL type names instead. Here are my reasons:

I didn't get his opinion before I read the complete paragraph.

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

String (System.String) is a class in the base class library. string (lower case) is a reserved work in C# that is an alias for System.String. Int32 vs int is a similar situation as is Boolean vs. bool. These C# language specific keywords enable you to declare primitives in a style similar to C.

link|improve this answer
feedback

It's a matter of convention, really. "string" just looks more like C/C++ style. The general convention is to use whatever shortcuts your chosen language has provided (int/Int for Int32). This goes for "object" and "decimal" as well.

Theoretically this could help to port code into some future 64-bit standard in which "int" might mean Int64, but that's not the point, and I would expect any upgrade wizard to change any "int" references to "Int32" anyway just to be safe.

link|improve this answer
feedback

protected by Community Apr 22 at 14:57

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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