Answers for "c sharp if string equals"

C#
5

c sharp if string equals

// There are two ways to check if 2 strings are the same:
string str1 = "Hello";
string str2 = "Hello";

// The first is using double equals sign ==
str1 == str2; // Output: true

// The second is using the 'Equals()' function
str1.Equals(str2); // Output: true
Posted by: Guest on February-27-2020

C# Answers by Framework

Browse Popular Code Answers by Language