PlayerExGetPlayerName Method |
Returns player name by index.
Namespace: Alvas.AudioAssembly: Alvas.Audio (in Alvas.Audio.dll) Version: 2016.0.6173.41573
Syntax public static string GetPlayerName(
int index
)
Public Shared Function GetPlayerName (
index As Integer
) As String
public:
static String^ GetPlayerName(
int index
)
Parameters
- index
- Type: SystemInt32
[Missing <param name="index"/> documentation for "M:Alvas.Audio.PlayerEx.GetPlayerName(System.Int32)"]
Return Value
Type:
String[Missing <returns> documentation for "M:Alvas.Audio.PlayerEx.GetPlayerName(System.Int32)"]
Examples This example shows simple using of GetPlayerName method.
for (int i = 0; i < PlayerEx.PlayerCount; i++)
{
Console.WriteLine(PlayerEx.GetPlayerName(i));
}
See Also