DSPUtil.WaveReader.This C# (CSharp) Method

This() private method

private This ( bool &more ) : ISample
more bool
return ISample
        private ISample This(out bool more)
        {
            // The current sample
            more = (_current != null);
            return _current;
        }