9
Answers

What is override in c#?

Joe Wilson

Joe Wilson

10y
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)