Alvas.Audio Class Library

Mixer.GetMixerName Method 

Gets the name of the mixer by index.

[Visual Basic]
Public Shared Function GetMixerName( _
   ByVal index As Integer _
) As String
[C#]
public static string GetMixerName(
   Int32 index
);

Parameters

index
The index.

Return Value

Example

This example shows simple using of GetMixerName method.

for (int i = 0; i < Mixer.MixerCount; i++)
{
   Console.WriteLine(Mixer.GetMixerName(i));
}

See Also

Mixer Class | Alvas.Audio Namespace