There are many (e.g. Jeffrey Richter in his book CLR Via C#) who are saying that there is no difference between System.String
and string
, and also System.Int32
and int
, but we must discriminate a little deeper to really squeeze the juice out of this question so we can get all the nutritional value out of it (write better code).
A. They are the Same...
- to the compiler.
- to the developer. (We know #1 and eventually achieve autopilot.)
B. They are Different in Famework and in Non-C# Contexts. Different...
- to OTHER languages that are NOT C#
- in an optimized CIL (was MSIL) context (the .NET VM assembly language)
- in a platform-targeted context -- the .NET Framework or Mono or any CIL-type area
- in a book targeting multiple .NET Languages (such as VB.NET, F#, etc.)
So, the true answer is that it is only because C# has to co-own the .NET space with other languages that this question even exists.
C. To Summarize...
You use string
and int
and the other C# types in a C#-only targeted audience (ask the question, who is going to read this code, or use this library). For your internal company, if you only use C#, then stick to the C# types.
...and you use System.String
and System.Int32
in a multilingual or framework targeted audience (when C# is not the only audience). For your internal organization, if you also use VB.NET or F# or any other .NET language, or develop libraries for consumption by customers who may, then you should use the "Frameworky" types in those contexts so that everyone can understand your interface, no matter what universe they are from. (What is Klingon for System.String
, anyway?)
HTH.