AlbLib.Sounds.RawPCMSound.RawPCMSound C# (CSharp) Метод

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

Loads sound from stream.
public RawPCMSound ( Stream stream, int length ) : System
stream Stream /// Input stream. ///
length int /// Length of ///
Результат System
        public RawPCMSound(Stream stream, int length)
            : this()
        {
            SoundData = new byte[length];
            stream.Read(SoundData, 0, length);
        }

Same methods

RawPCMSound::RawPCMSound ( ) : System
RawPCMSound::RawPCMSound ( byte data ) : System