最佳答案
Consider this:
List<MyClass> obj_list = get_the_list();
foreach( MyClass obj in obj_list )
{
obj.property = 42;
}
Is obj
a reference to the corresponding object within the list so that when I change the property the change will persist in the object instance once constructed somewhere?