EventStep.SetNextIndex C# (CSharp) 메소드

SetNextIndex() 공개 메소드

public SetNextIndex ( int index ) : void
index int
리턴 void
    public void SetNextIndex(int index)
    {
        this.next = index;
    }

Usage Example

예제 #1
0
 public void InsertStep(EventStep s, int pos)
 {
     step = ArrayHelper.Add(s, step);
     s.SetNextIndex(step.Length);
     this.MoveStepTo(pos, step.Length-1);
 }