Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

StringAssert::StartsWith Method (String^, String^)

 

Verifies that the first string begins with the second string. This method is case sensitive.

Namespace:   Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

public:
static void StartsWith(
	String^ value,
	String^ substring
)

Parameters

value
Type: System::String^

The string that is expected to begin with substring.

substring
Type: System::String^

The string expected to be a prefix of value.

Exception Condition
AssertFailedException

value does not begin with substring.

The assertion fails if the string does not start with the substring.

Return to top
Show: