Alvas.Audio Class Library

RecorderEx.GetRecorderName Method 

Returns recorder name by index.

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

Parameters

index

Return Value

Example

This example shows simple using of GetRecorderName method.

for (int i = 0; i < RecorderEx.RecorderCount; i++)
{
    Console.WriteLine(RecorderEx.GetRecorderName(i));
}
 

See Also

RecorderEx Class | Alvas.Audio Namespace