K2Informatics.Erlnet.OtpActor.GetEnumerator C# (CSharp) Метод

GetEnumerator() публичный абстрактный Метод

public abstract GetEnumerator ( ) : IEnumerator
Результат IEnumerator
        public abstract IEnumerator<Continuation> GetEnumerator();

Usage Example

Пример #1
0
 public OtpActorSchedTask(OtpActor actor)
 {
     actor.Task = this;
     this.actor = actor;
     this.enumerator = actor.GetEnumerator();
 }