Answers for "compare text c#"

C#
3

compare text c#

string str1 = "London";
string str2 = "London";
 
str1 == str2; // true
str1.Equals(str2); // true
Posted by: Guest on December-14-2020

C# Answers by Framework

Browse Popular Code Answers by Language