I have a list of classes.
For Example:
public class Object()
{
public string a;
public string b;
}
public List<Object> Objects = new list<Object>();
What I want is a Method that can set the string a in each Object in the List to Object[0].a;
And I want to do this to b and a lot of other vars too with a single Method. (Other var types to, with only one Method) is this possible?