Home »
.Net »
C# Programs
Compare strings using Equals() method in C#
Comparing two strings using String.Equals() in C#: Here, we will learn with example, how we can compare two strings using String.Equals() Method in C#.Net?
Given two strings and we have to compare them using String.Equals() method in C#.Net.
String.Equals() Method
It is a method of string class, which is used to compare strings and return either true if they are equal or false, if they are not equal.
Syntax:
bool str.Equals(string str);
Return values:
- True - if strings matche.
- False - if strings do not matche.
C# program to compare two strings using C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main()
{
string str = "Hello";
if (str.Equals("Hello"))
{
Console.WriteLine("Strings is matched");
}
else
{
Console.WriteLine("String is not matched");
}
if (str.Equals("Hiii"))
{
Console.WriteLine("String is matched");
}
else
{
Console.WriteLine("String is not matched");
}
}
}
}
Output
String is matched
String is not matched
C# Basic Programs »