So, the question is simple to aks: How can I overwrite the constructor of a class from the outside. The Problem itself is, that i have a class which is already compiled, and it already has some constructors, but those idiots of coders removed a constructor, so i am now unable to XML(de)Serialize it...
So what they have done is this:
They changed
Vector2();
Vector2( x, y);
into
Vector2(x=0,y=0);
But my Problem is, that the Serializer isn't that intelligent to realize that he can still create the class, and changing the entire code would be a pain in the * * *