BF2Statistics.ASP.StatsProcessor.GameResult.GetPlayerById C# (CSharp) Method

GetPlayerById() public method

Returns the player object by PID.
public GetPlayerById ( int Pid ) : Player
Pid int
return Player
        public Player GetPlayerById(int Pid)
        {
            return this.Players.FirstOrDefault(p => p.Pid == Pid);
        }