EngineObjectEnumerator Class
Represents an object used to iterate over a collection of EngineObject elements.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public class EngineObjectEnumerator : EngineObject
Remarks
An EngineObjectEnumerator is initially positioned before the first element in the collection and you must call MoveNext to advance the enumerator to the first element before you can retrieve it through the Current property.
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
EngineObjectEnumerator
Platforms
Windows, Linux, Android
EngineObjectEnumerator Members
The EngineObjectEnumerator type has the following members.
Properties
Name | Description |
---|---|
Current | Gets the EngineObject at the current position in the collection. |
IsDisposed | Gets a value that tells whether the current EngineObjectEnumerator has been disposed. Inherited from EngineObject |
NativeHandle | Gets the native Carmenta Engine kernel object the current EngineObjectEnumerator represents. Inherited from EngineObject |
Methods
Name | Description |
---|---|
Clone | Creates a copy of an object. Inherited from EngineObject |
Dispose | Releases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |
MoveNext | Advances the EngineObjectEnumerator to the next element in the collection. |
Reset | Resets the EngineObjectEnumerator to its initial position, one before the first element in the collection. |