2
Answers

how to compare two string in the csharp web application

Sairam

Sairam

14y
3.4k
1
how to compare two string in the csharp web application 

  if(arrStr.Equals(temp))
                           
                          {
                              Response.Write("equal");
                          }
                          else
                          {
                              Response.Write("not");
                          }

results always "not" even when 2 strings are equal
Answers (2)