i want to print debug and see what is contained in this byte.
code is here
SoundEffect sound = new SoundEffect(stream.ToArray(), microphone.SampleRate, AudioChannels.Mono);
i want to print debug and see what is contained in this byte.
code is here
SoundEffect sound = new SoundEffect(stream.ToArray(), microphone.SampleRate, AudioChannels.Mono);
To display the data you could use the BitConverter class.
string s = BitConverter.ToString(stream);