Asserts that two strings are equal, ignoring the case

Namespace: MbUnit.Framework
Assembly:  MbUnit.Framework (in MbUnit.Framework.dll)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void AreEqualIgnoreCase(
	string s1,
	string s2
)
Public Shared Sub AreEqualIgnoreCase ( _
	s1 As String, _
	s2 As String _
)
public:
static void AreEqualIgnoreCase(
	String^ s1, 
	String^ s2
)

Parameters

s1
String
Expected string
s2
String
Actual string

See Also