StringSegment.EndsWith(String, StringComparison) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
檢查使用指定的 comparisonType
進行比較時,此 StringSegment 的結尾是否與所指定 String 相符。
public:
bool EndsWith(System::String ^ text, StringComparison comparisonType);
public bool EndsWith (string text, StringComparison comparisonType);
member this.EndsWith : string * StringComparison -> bool
Public Function EndsWith (text As String, comparisonType As StringComparison) As Boolean
參數
- comparisonType
- StringComparison
其中一個列舉值,指定要用於比較的規則。
傳回
若 text
符合此 StringSegment 的結尾,則為 true
;否則為 false
。
例外狀況
text
為 null
。