String::EndsWith Method (String, Boolean, CultureInfo)
Determines whether the end of this string instance matches the specified string when compared using the specified culture.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
- Type: System::String
The string to compare to the substring at the end of this instance.
- ignoreCase
- Type: System::Boolean
true to ignore case during the comparison; otherwise, false.
- culture
- Type: System.Globalization::CultureInfo
Cultural information that determines how this instance and value are compared. If culture is nullptr, the current culture is used.
Return Value
Type: System::Booleantrue if the value parameter matches the end of this string; otherwise, false.
| Exception | Condition |
|---|---|
| ArgumentNullException | value is nullptr. |
This method compares the value parameter to the substring at the end of this string that is the same length as value, and returns a value that indicates whether they are equal. To be equal, value must be a reference to this same instance or match the end of this string.
This method performs a word (culture-sensitive) comparison using the specified casing and culture.
The following example determines whether a string occurs at the end of another string. The EndsWith method is called several times using case sensitivity, case insensitivity, and different cultures that influence the results of the search.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.