You can use this
string.Equals(one, two, StringComparison.CurrentCultureIgnoreCase)
Your code will be
if (string.Equals(one, two, StringComparison.CurrentCultureIgnoreCase))
{
MessageBox.Show("Pass");
}
else
{
MessageBox.Show("Fail");
}
Using CurrentCultureIgnoreCase :
Compare strings using culture-based sorting rules, the current culture, and ignoring the case of string comparisons
More here