Edge cases in the string vs. String comparison in C#
Whilst most C# developer would know that in C# the string type is equivalent to the System.String type because string is simply an alias for the System.String type. There are other framework defined alias like string, such as int for System.Int32 and long for System.Int64. Whilst in normal usage the two are identical, thanks to …
Edge cases in the string vs. String comparison in C# Read More »