編輯

共用方式為


ValueString.EndsWith Method

Definition

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.

Applies to