Архив метки: C#

C# — what is the difference between String and string?

In C#, there are two ways to declare a string: using the string keyword and using the String class. Let’s explore the differences and understand which one you should use.

Differences between `string` and `String` (Alias vs. Class)

  • string is an alias in C# for System.String.
  • String refers to the System.String class in the .NET Framework.
Читать далее