is there a way to update a class I am currently in with a new instance of that class? For example:
public class Test
{
Test temp = new Test();
this = temp;
}
I am doing this because I have a save/load feature form serializable and I need a way to update the current class from it