StringUtil
Provides methods to support legacy string comparison methods.
namespace NUnit.Framework.Internal
{
public class StringUtil
{
public static int Compare(string strA, string strB, bool ignoreCase)
{
return string.Compare(strA, strB, ignoreCase);
}
public static bool StringsEqual(string strA, string strB, bool ignoreCase)
{
return Compare(strA, strB, ignoreCase) == 0;
}
}
}