# FixedList4096Bytes<T>.Enumerator

> An enumerator over the elements of a FixedList4096Bytes\<T\>.

## Definition

* **Type:** Struct
* **Namespace:** [Unity.Collections](/engine/6000.7/script-reference/unity/collections.md)
* **Assembly:** UnityEngine.ManagedKernelModule
* **Implements:** [IEnumerator\<T>](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1), [IEnumerator](https://learn.microsoft.com/dotnet/api/system.collections.ienumerator), [IDisposable](https://learn.microsoft.com/dotnet/api/system.idisposable)

```csharp
public struct FixedList4096Bytes<T>.Enumerator : IEnumerator<T>, IEnumerator, IDisposable
```

## Remarks

In an enumerator's initial state, `Current` cannot be read. The first [FixedList4096Bytes\<T>.Enumerator.MoveNext](/engine/6000.7/script-reference/unity/collections/fixedlist4096bytes1/enumerator/movenext.md) call advances the enumerator to the first element.

## Constructors

| Constructor                                                                                                                                         | Description                                                        |
| --------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ |
| [Enumerator(Unity.Collections.FixedList4096Bytes\{\`0}@)](/engine/6000.7/script-reference/unity/collections/fixedlist4096bytes1/enumerator/ctor.md) | Initializes and returns an instance of FixedList4096Bytes\\\<T\\>. |

## Properties

| Property                                                                                               | Description          |
| ------------------------------------------------------------------------------------------------------ | -------------------- |
| [Current](/engine/6000.7/script-reference/unity/collections/fixedlist4096bytes1/enumerator/current.md) | The current element. |

## Methods

| Method                                                                                                   | Description                                  |
| -------------------------------------------------------------------------------------------------------- | -------------------------------------------- |
| [Dispose](/engine/6000.7/script-reference/unity/collections/fixedlist4096bytes1/enumerator/dispose.md)   | Does nothing.                                |
| [MoveNext](/engine/6000.7/script-reference/unity/collections/fixedlist4096bytes1/enumerator/movenext.md) | Advances the enumerator to the next element. |
| [Reset](/engine/6000.7/script-reference/unity/collections/fixedlist4096bytes1/enumerator/reset.md)       | Resets the enumerator to its initial state.  |
