Click or drag to resize
MixerGetMixerName Method
Gets the name of the mixer by index.

Namespace: Alvas.Audio
Assembly: Alvas.Audio (in Alvas.Audio.dll) Version: 2016.0.6173.41573
Syntax
public static string GetMixerName(
	int index
)

Parameters

index
Type: SystemInt32
The index.

Return Value

Type: String

[Missing <returns> documentation for "M:Alvas.Audio.Mixer.GetMixerName(System.Int32)"]

Examples
This example shows simple using of GetMixerName method.
for (int i = 0; i < Mixer.MixerCount; i++)
{
   Console.WriteLine(Mixer.GetMixerName(i));
}
See Also