{description} {excerpt}Returns a collection of [Element|Element] objects that represents all the direct children of the current element.{excerpt} {signature:C#} public Element[] Children{ get; } {signature}{signature:vb.net} Public ReadOnly Property Children() As Element() {signature} {example}{code:csharp|title=C#} Element[] eArray = e.Children; {code} {code:vbnet|title=vb.net} Dim eArray As Element() = e.Children {code} {example} |