Accord.Audio.PlayFrameEventArgs.PlayFrameEventArgs C# (CSharp) 메소드

PlayFrameEventArgs() 공개 메소드

Initializes a new instance of the NewFrameEventArgs class.
public PlayFrameEventArgs ( int frameIndex, int count ) : System
frameIndex int New frame index.
count int The number of frames to play.
리턴 System
        public PlayFrameEventArgs(int frameIndex, int count)
        {
            this.frameIndex = frameIndex;
            this.count = count;
        }
PlayFrameEventArgs