Я хочу создать список класса типов, в котором есть свойства, к которым я могу добавить.
Кроме того, чтобы получить доступ к этим свойствам?
Вот что у меня есть.
public class Class1
{
enum Player
{
Me,
Opponent
}
public class MovesMade
{
Player Peep = new Player { };
//Other properties here
}
List<MovesMade> AllMoves = new List<MovesMade> {};
public void MyFunc()
{
AlllMoves.Add ??
if (AllMoves.Peep == Player.Me) {
}
}
}