If two string are equal : String Compare : String C# Examples


C# Examples » String » String Compare »

 

If two string are equal









    
using  System;  
  
class  MainClass  {  
    public  static  void  Main()  {  
        string  str1  =  "one";  
        string  str2  =  "one";  
  
        if(String.Compare(str1,  str2)  ==  0)  
            Console.WriteLine(str1  +  "  and  "  +  str2  +  
                                                "  are  equal.");  
        else  
            Console.WriteLine(str1  +  "  and  "  +  str2  +  
                                                "  are  not  equal.");  
  
    }  
}
    
   
  
   



Output

one and one are equal.


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo String
» String Compare