XElement.EmptySequence 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取空的元素集合。
public:
static property System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ EmptySequence { System::Collections::Generic::IEnumerable<System::Xml::Linq::XElement ^> ^ get(); };
public static System.Collections.Generic.IEnumerable<System.Xml.Linq.XElement> EmptySequence { get; }
member this.EmptySequence : seq<System.Xml.Linq.XElement>
Public Shared ReadOnly Property EmptySequence As IEnumerable(Of XElement)
属性值
一个包含空集合的 IEnumerable<T> 的 XElement。
注解
编写返回元素集合的方法时,类实现程序通常会使用此属性。 如果该方法不能返回任何元素,则可以使用此属性获取对象的空集合 XElement 。