Can interface have virtual methods in c#?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Sharp Interview Questions

What is object type in c#?

0 Answers  


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; } }

1 Answers   iGate,


Explain the importance and use of each, version, culture and publickeytoken for an assembly.

0 Answers  


What is namespace give the example?

0 Answers  


What is the use of properties window?

0 Answers  






i have a string aabccefsdss.how can i get the string abcefsd. or write the fallowing string with only character occurrence of once .

1 Answers  


Explain about finalize method?

0 Answers  


Why do we need dependency injection in c#?

0 Answers  


What is difference between sleep () and wait ()?

0 Answers  


How will U encapsulate button trigger event into text_box event of Pressing Enter key?i.e only after pressing Enter after the text is typed the button trigger event should activate?

6 Answers   TCS,


What is tpl in c#?

0 Answers  


Can a constructor be private in c#?

0 Answers  


Categories