ValueString.EndsWith Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
EndsWith(ValueString) |
Determines whether this string ends with the specified string. |
EndsWith(Char) |
Determines whether this string ends with the specified character. |
EndsWith(ValueString)
Determines whether this string ends with the specified string.
public bool EndsWith (Microsoft.Windows.EventTracing.ValueString value);
member this.EndsWith : Microsoft.Windows.EventTracing.ValueString -> bool
Public Function EndsWith (value As ValueString) As Boolean
Parameters
- value
- ValueString
The string to compare.
Returns
true
if this string ends with the specified value
or if
value
is empty; otherwise,
false
.
Applies to
EndsWith(Char)
Determines whether this string ends with the specified character.
public bool EndsWith (char value);
member this.EndsWith : char -> bool
Public Function EndsWith (value As Char) As Boolean
Parameters
- value
- Char
The character to compare.
Returns
true
if this string ends with the specified value
; otherwise,
false
.