class NetWaveStream : WaveStream
{
public override WaveFormat WaveFormat => throw new NotImplementedException();
public override long Length => throw new NotImplementedException();
public override long Position { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public override int Read(byte[] buffer, int offset, int count)
{
throw new NotImplementedException();
}
}
function iii(){}
原文:https://www.cnblogs.com/little-y/p/12539911.html