Accord.Audio.Formats.FrameInfo.Clone C# (CSharp) Метод

Clone() публичный Метод

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
Результат object
        public virtual object Clone()
        {
            return new FrameInfo(channels, samplingRate, bitsPerSample, frameIndex, totalFrames);
        }
    }