On classes which override the method ToString() inherited from object, this method gets removed completely. This might also be the case for other methods inherited from object (but I didn't test this).
Example:
class Test {
public override string ToString() {
return "my test class";
}
}
results in:
class a{}
On classes which override the method
ToString()inherited fromobject, this method gets removed completely. This might also be the case for other methods inherited fromobject(but I didn't test this).Example:
results in:
class a{}