Accord.Audio.PlayFrameEventArgs.PlayFrameEventArgs C# (CSharp) Méthode

PlayFrameEventArgs() public méthode

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.
Résultat System
        public PlayFrameEventArgs(int frameIndex, int count)
        {
            this.frameIndex = frameIndex;
            this.count = count;
        }
PlayFrameEventArgs