NodeListT Class

NodeList<T> class

Base implementation of the NodeList.

public abstract class NodeList<T> : IEnumerable<T>, IWritable
    where T : MarkdownSyntaxNode
ParameterDescription
TThe T type.

Properties

NameDescription
abstract Count { get; }Gets the number of node in the list.

Methods

NameDescription
abstract Get(int)Gets the node at the given index.
abstract GetEnumerator()Gets the nodes in the collection.
WriteTo(TextWriter)Write nodes to text writer.

See Also