Foreach and custom objects
right, Basically I have
public class myClass : Object{
myObjectType object1;
myObjectType object2;
myObjectType object3;
public void Save()
{
foreach( myObjectType i in this) /// this part doesn't work
//save stuff
}
}
please help!