9
Answers

What is override in c#?

Photo of Joe Wilson

Joe Wilson

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

Answers (9)