我有一个具有固定值的字符串数组和一个动态更改文本的富文本框。Richtextbox 中的某些行以字符串数组中的值开头。我只想选择不以字符串数组中的值开头的富文本框的行。以下代码返回富文本框中的所有行。
string[] parts = new string[] { "Definition:", "derivation:", "derivations:"};
IEnumerable<string> lines = richTextBox1.Lines.Where(
c =>parts.Any(b=>!c.StartsWith(b)));
我的问题是:如何仅选择不以字符串数组中的值开头的richtextbox 行?