MatchCollection.ICollection<Match>.Remove(Match) 方法

定义

调用此方法始终引发 NotSupportedException

 virtual bool System.Collections.Generic.ICollection<System.Text.RegularExpressions.Match>.Remove(System::Text::RegularExpressions::Match ^ item) = System::Collections::Generic::ICollection<System::Text::RegularExpressions::Match ^>::Remove;
bool ICollection<Match>.Remove (System.Text.RegularExpressions.Match item);
abstract member System.Collections.Generic.ICollection<System.Text.RegularExpressions.Match>.Remove : System.Text.RegularExpressions.Match -> bool
override this.System.Collections.Generic.ICollection<System.Text.RegularExpressions.Match>.Remove : System.Text.RegularExpressions.Match -> bool
Function Remove (item As Match) As Boolean Implements ICollection(Of Match).Remove

参数

item
Match

要从集合中移除的对象。

返回

如果从集合中成功移除了 true,则为 item;否则为 false。 如果未在原始集合中找到 item,此方法也会返回 false

实现

例外

该集合是只读的。

适用于