Can we have the method in drived class with the same name
which is there in base class?
Answer Posted / ravindarjobs
have a look at this link.
http://msdn2.microsoft.com/en-us/library/6fawty39
(VS.80).aspx
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain inheritance in c#?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
What is parsing? How to parse a date time string?
What is sqlconnection in c#?
What is the difference between C# 3.5 and C# 4.0?
What is type system in c#?
How are delegates chosen?
How many aware interfaces are there?
What type is string in c#?
What language is c# similar to?
What is deferred execution in c#?
What is the real use of interface in c#?
Why are strings immutable c#?
Explain the features of an abstract class in net.
What is the solution if you need to manipulate sets of items?