BitOrchestra.BufferedEvaluator.Generate C# (CSharp) 메소드

Generate() 공개 메소드

Generates the values of the evaluator starting at the given offset and returns them as a buffer.
public Generate ( Int32 Start ) : Value[]
Start System.Int32
리턴 Value[]
        public Value[] Generate(Value Start)
        {
            if (!this.Ready)
            {
                this.Source.Generate(Start, this.Buffer);
                this.Ready = true;
            }
            return this.Buffer;
        }

Same methods

BufferedEvaluator::Generate ( Int32 Start, Int32 Buffer ) : void