I want to redefine the ToString() function in one of my classes.
I wrote
public string ToString()
... and it's working fine. But ReSharper is telling me to change this to either
public new string ToString()
or
public override string ToString()
What's the difference? Why does C# requires something like this?