9
Answers

What is override in c#?

For Example , What is the usage of override.
 
public override string To String()
{
return String.Format("Name = {0}, Age = {1}", Name, Age);
}

Answers (9)