Boo.Lang.AbstractGeneratorEnumerator.Yield C# (CSharp) Méthode

Yield() protected méthode

protected Yield ( int state, object value ) : bool
state int
value object
Résultat bool
        protected bool Yield(int state, object value)
        {
            _state = state;
            _current = value;
            return true;
        }