Extensions.Remove 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Remove(IEnumerable<XAttribute>) |
在來源集合中,從每一個屬性的父項目移除這些屬性。 |
Remove<T>(IEnumerable<T>) |
在來源集合中,從每一個節點的父節點移除這些節點。 |
Remove(IEnumerable<XAttribute>)
在來源集合中,從每一個屬性的父項目移除這些屬性。
public:
[System::Runtime::CompilerServices::Extension]
static void Remove(System::Collections::Generic::IEnumerable<System::Xml::Linq::XAttribute ^> ^ source);
public static void Remove (this System.Collections.Generic.IEnumerable<System.Xml.Linq.XAttribute> source);
public static void Remove (this System.Collections.Generic.IEnumerable<System.Xml.Linq.XAttribute?> source);
static member Remove : seq<System.Xml.Linq.XAttribute> -> unit
<Extension()>
Public Sub Remove (source As IEnumerable(Of XAttribute))
參數
- source
- IEnumerable<XAttribute>
IEnumerable<T> 的 XAttribute,其中包含來源集合。
範例
下列範例會擷取屬性集合,然後呼叫這個方法,從其父元素中移除它們。
XElement root = new XElement("Root",
new XAttribute("Att1", 1),
new XAttribute("Att2", 2),
new XAttribute("Att3", 3),
new XAttribute("Att4", 4),
new XAttribute("Att5", 5)
);
IEnumerable<XAttribute> atList =
from at in root.Attributes()
where (int)at >= 3
select at;
atList.Remove();
Console.WriteLine(root);
Dim root As XElement = <Root Att1="1" Att2="2" Att3="3" Att4="4" Att5="5"/>
Dim atList = From at In root.Attributes _
Where at.Value >= 3 _
Select at
atList.Remove()
Console.WriteLine(root)
這個範例會產生下列輸出:
<Root Att1="1" Att2="2" />
備註
這個方法會使用快照式語意 ,也就是說,它會先將來源集合中的屬性複製到 , System.Collections.Generic.List<T> 然後再將其與父系中斷連線。 這是避免混合命令式/宣告式程式碼的問題的必要專案。 如需詳細資訊,請參閱混合宣告式程式碼/命令式程式碼 Bug (LINQ to XML) 。
另請參閱
適用於
Remove<T>(IEnumerable<T>)
在來源集合中,從每一個節點的父節點移除這些節點。
public:
generic <typename T>
where T : System::Xml::Linq::XNode[System::Runtime::CompilerServices::Extension]
static void Remove(System::Collections::Generic::IEnumerable<T> ^ source);
public static void Remove<T> (this System.Collections.Generic.IEnumerable<T> source) where T : System.Xml.Linq.XNode;
public static void Remove<T> (this System.Collections.Generic.IEnumerable<T?> source) where T : System.Xml.Linq.XNode;
static member Remove : seq<'T (requires 'T :> System.Xml.Linq.XNode)> -> unit (requires 'T :> System.Xml.Linq.XNode)
<Extension()>
Public Sub Remove(Of T As XNode) (source As IEnumerable(Of T))
類型參數
- T
source
中物件的型別,限制為 XNode。
參數
- source
- IEnumerable<T>
IEnumerable<T> 的 XNode,其中包含來源集合。
範例
下列範例會擷取專案的集合。 然後它會呼叫這個方法,以從其父元素中移除專案。
XElement root = new XElement("Root",
new XElement("Data", 1),
new XElement("Data", 2),
new XElement("Data", 3),
new XElement("Data", 4),
new XElement("Data", 5)
);
IEnumerable<XElement> elList =
from el in root.Elements()
where (int)el >= 3
select el;
elList.Remove();
Console.WriteLine(root);
Dim root As XElement = _
<Root>
<Data>1</Data>
<Data>2</Data>
<Data>3</Data>
<Data>4</Data>
<Data>5</Data>
</Root>
Dim elList = From el In root.Elements _
Where el.Value >= 3 _
Select el
elList.Remove()
Console.WriteLine(root)
這個範例會產生下列輸出:
<Root>
<Data>1</Data>
<Data>2</Data>
</Root>
備註
這個方法會使用快照式語意 ,也就是說,它會先將來源集合中的屬性複製到 , List<T>
然後再將其與父系中斷連線。 這是避免混合命令式/宣告式程式碼的問題的必要專案。 如需詳細資訊,請參閱混合宣告式程式碼/命令式程式碼 Bug (LINQ to XML) 。