ChildSyntaxList Struct

Definition

public value class ChildSyntaxList : IEquatable<Microsoft::CodeAnalysis::ChildSyntaxList>, System::Collections::Generic::IEnumerable<Microsoft::CodeAnalysis::SyntaxNodeOrToken>, System::Collections::Generic::IReadOnlyCollection<Microsoft::CodeAnalysis::SyntaxNodeOrToken>, System::Collections::Generic::IReadOnlyList<Microsoft::CodeAnalysis::SyntaxNodeOrToken>
public readonly struct ChildSyntaxList : IEquatable<Microsoft.CodeAnalysis.ChildSyntaxList>, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.SyntaxNodeOrToken>, System.Collections.Generic.IReadOnlyCollection<Microsoft.CodeAnalysis.SyntaxNodeOrToken>, System.Collections.Generic.IReadOnlyList<Microsoft.CodeAnalysis.SyntaxNodeOrToken>
type ChildSyntaxList = struct
    interface IReadOnlyList<SyntaxNodeOrToken>
    interface seq<SyntaxNodeOrToken>
    interface IEnumerable
    interface IReadOnlyCollection<SyntaxNodeOrToken>
Public Structure ChildSyntaxList
Implements IEnumerable(Of SyntaxNodeOrToken), IEquatable(Of ChildSyntaxList), IReadOnlyCollection(Of SyntaxNodeOrToken), IReadOnlyList(Of SyntaxNodeOrToken)
Inheritance
ChildSyntaxList
Implements

Properties

Count

Gets the number of children contained in the ChildSyntaxList.

Item[Int32]

Gets the child at the specified index.

Methods

Any()
Equals(ChildSyntaxList)

Determines whether the specified ChildSyntaxList structure is equal to the current instance.

Equals(Object)

Determines whether the specified object is equal to the current instance.

First()

Returns the first child in the list.

GetEnumerator()

Returns an enumerator that iterates through the ChildSyntaxList.

GetHashCode()

Returns the hash code for the current instance.

Last()

Returns the last child in the list.

Reverse()

Returns a list which contains all children of ChildSyntaxList in reversed order.

Operators

Equality(ChildSyntaxList, ChildSyntaxList)

Indicates whether two ChildSyntaxList structures are equal.

Inequality(ChildSyntaxList, ChildSyntaxList)

Indicates whether two ChildSyntaxList structures are unequal.

Explicit Interface Implementations

IEnumerable.GetEnumerator()
IEnumerable<SyntaxNodeOrToken>.GetEnumerator()

Applies to