Can interface have virtual methods in c#?
No Answer is Posted For this Question
Be the First to Post Answer
What is object type 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; } }
Explain the importance and use of each, version, culture and publickeytoken for an assembly.
What is namespace give the example?
What is the use of properties window?
i have a string aabccefsdss.how can i get the string abcefsd. or write the fallowing string with only character occurrence of once .
Explain about finalize method?
Why do we need dependency injection in c#?
What is difference between sleep () and wait ()?
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?
What is tpl in c#?
Can a constructor be private in c#?