StringBuilder.ChunkEnumerator Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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 |
MoveNext() |
Advances the enumerator to the next chunk in the collection. |