Question concerning creating args
I have a question, I am trying to create a new arg in a foreach statement. How can i do this. i also want to call the arg the var that comes from the foreach statement

class Team
{
public List<Players> players;
}List<Team> teams = new();
foreach(var team in teams)
{
//what do you want to do here
}