What is the difference between System.String and string in C#?
Basically, there is no difference between string and String in C#. "string" is just an alias of System.String and both are compiled in the same manner. String stands for System.String and it is a .NET Framework type. "string" is an alias in the C# la...
Apr 13, 20231 min read24
