class Player { public string _playerName; public int playerID; public Player(string playerName,int playerIdentifier) { _playerName = playerName; playerID = playerIdentifier; List<Player> Players; } }