How do I get deterministic finalization in c#?
No Answer is Posted For this Question
Be the First to Post Answer
Can you inherit multiple classes in c#?
Can class be protected in c#?
What are the 3 types of comments in c#?
Is namespace necessary in c#?
Suppose you have already existing application with Visual Studio 6 (VB 6, InterDev 6) and this application utilizes Windows 2000 COM+ transaction services. With this example how can you approach migrating this application to .NET?
what is meant inheritance. can you exaplain what kind inhertance ussed in your project
update data in an xml file which resides in solution itself, using silverlight 4.0
How jit (just in time) works?
Oops concepts ?
2 Answers Accenture, Digital GlobalSoft,
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; } }
Is null == null c#?
What are strings in c#?