OpenBve.WaveParser.WaveData.WaveData C# (CSharp) Méthode

WaveData() private méthode

Creates a new instance of this class.
private WaveData ( WaveFormat format, byte bytes ) : System
format WaveFormat The format of the wave data.
bytes byte The wave data in little endian byte order. If the bits per sample are not a multiple of 8, each sample is padded into a multiple-of-8 byte. For bytes per sample higher than 1, the values are stored as signed integers, otherwise as unsigned integers.
Résultat System
			internal WaveData(WaveFormat format, byte[] bytes) {
				this.Format = format;
				this.Bytes = bytes;
			}
		}
WaveParser.WaveData