StringBuilder.ChunkEnumerator Struct

Definition

Supports simple iteration over the chunks of a StringBuilder instance.

public: value class StringBuilder::ChunkEnumerator
public struct StringBuilder.ChunkEnumerator
type StringBuilder.ChunkEnumerator = struct
Public Structure StringBuilder.ChunkEnumerator
Inheritance
StringBuilder.ChunkEnumerator

Remarks

A ChunkEnumerator is returned by the StringBuilder.GetChunks method. It supports both the IEnumerable and IEnumerator patterns so that the chunks can be enumerated with foreach in C# or For Each in Visual Basic.

ChunkEnumerator is a public structure so that language compilers can use it to build a foreach statement. However, developers typically don't use it explicitly (which is why it is a nested type).

Properties

Current

Gets the chunk and the current position of the collection.

Methods

GetEnumerator()

Provides an GetEnumerator() implementation that returns this as the IEnumerator.

MoveNext()

Advances the enumerator to the next chunk in the collection.

Applies to