[Solved] Lambda expressions with properties from base class [closed]
For me it works fine: See this example here, probably there is something else causing the issue: public void Main() { List<PlayerData> playerdata = new List<PlayerData> { new PlayerData { isSelected = true, distance = 3, nickname = “First”, }, new PlayerData { isSelected = true, distance = 3, nickname = “Second”, }, new PlayerData … Read more