vote up 1 vote down star
1

A quick and simple question...

Why does C#.Net allow the declaration of the string object to be case-insensitive?

String sHello = "Hello";
string sHello = "Hello";

Both the lower-case and upper-case S of the word String are acceptable and this seems to be the only object that allows this.

Can anyone explain why?

flag

8 Answers

vote up 15 vote down check

string is a language keyword while System.String is the type it aliases.

Both compile to exactly the same thing, similarly:

  • int is System.Int32
  • long is System.Int64
  • float is System.Single
  • double is System.Double
  • char is System.Char
  • byte is System.Byte

I think in most cases this is about code legibility - all the basic system value types have aliases, I think the lower case string might just be for consistency.

link|flag
vote up 3 vote down

Further to the other answers, it's good practice to use keywords if they exist.

E.g. you should use string rather than System.String.

link|flag
vote up 1 vote down

See this question for more information.

link|flag
vote up 1 vote down

"String" is the name of the class. "string" is keyword that maps this class.

it's the same like

  • Int32 => int
  • Decimal => decimal
  • Int64 => long

... and so on...

link|flag
vote up 0 vote down

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

By convention, though, objects of type (System.String) are generally refered to as the alias - e.g.

string myString = "Hello";

whereas operations on the class use the uppercase version e.g.

String.IsNullOrEmpty(myStringVariable);
link|flag
I don't think the convention is particularly to use the upper case version for operations. I certainly haven't seen that written down. The important thing is to use the BCL version for public names, e.g. ReadSingle instead of ReadFloat. – Jon Skeet Nov 21 '08 at 13:38
vote up 0 vote down

"string" is a C# keyword. it's just an alias for "System.String" - one of the .NET BCL classes.

link|flag
vote up 0 vote down

"string" is just an C# alias for the class "String" in the System-namespace.

link|flag
vote up 0 vote down

I use String and not string, Int32 instead of int, so that my syntax highlighting picks up on a string as a Type and not a keyword. I want keywords to jump out at me.

link|flag

Your Answer

Get an OpenID
or

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