Asserts the string does not contain c

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void DoesNotContain(
	string s,
	char[] anyOf
)
Public Shared Sub DoesNotContain ( _
	s As String, _
	anyOf As Char() _
)
public:
static void DoesNotContain(
	String^ s, 
	array<wchar_t>^ anyOf
)

Parameters

s
String
String to test.
anyOf
array<Char>[]()[]
Variable list of characeters.

See Also