Q:

Compare strings using Equals() method in C#

belongs to collection: C# Basic Programs | String programs

0

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.
  •  

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Basic Programs | String programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Explain LastIndexOf() method of String class with ... >>
<< Demonstrate the example of IndexOf() method of str...