Verifies that the first string ends with the second string. Displays a message if the assertion fails. This method is case sensitive.
Namespace:  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Syntax
'Declaration
Public Shared Sub EndsWith ( _
    value As String, _
    substring As String, _
    message As String _
)
public static void EndsWith(
    string value,
    string substring,
    string message
)
public:
static void EndsWith(
    String^ value, 
    String^ substring, 
    String^ message
)
static member EndsWith : 
        value:string * 
        substring:string * 
        message:string -> unit
public static function EndsWith(
    value : String, 
    substring : String, 
    message : String
)
Parameters
- value 
 Type: String- The string that is expected to end with substring. 
- substring 
 Type: String- The string expected to be a suffix of value. 
- message 
 Type: String- A message to display if the assertion fails. This message can be seen in the unit test results. 
Exceptions
| Exception | Condition | 
|---|---|
| AssertFailedException | value does not end with substring. | 
Remarks
The assertion fails if the string does not end with the substring.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.