Gets the name of the mixer by index.
Namespace: Alvas.AudioAssembly: Alvas.Audio (in Alvas.Audio.dll) Version: 2016.0.6173.41573
Syntax public static string GetMixerName(
int index
)
Public Shared Function GetMixerName (
index As Integer
) As String
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