Exemplo n.º 1
0
        public SoundDevice[] AvailableDevices()
        {
            var defaultDevices = new[]
            {
                new SoundDevice("Null", null, "Output Disabled")
            };

            return(defaultDevices.Concat(soundEngine.AvailableDevices()).ToArray());
        }
Exemplo n.º 2
0
 public SoundDevice[] AvailableDevices()
 {
     return(soundEngine.AvailableDevices());
 }