Solution: Esports Matchmaking Lobby

Review the implementation of filtering, sorting, and projecting using method syntax.

Solution: Esports Matchmaking Lobby

Review the implementation of filtering, sorting, and projecting using method syntax.
C# 14.0
namespace Matchmaking;
public class Player
{
public string GamerTag { get; set; } = string.Empty;
public int MMR { get; set; }
public string Status { get; set; } = string.Empty;
}