How do I get deterministic finalization in c#?


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

Post New Answer

More C Sharp Interview Questions

Can you inherit multiple classes in c#?

0 Answers  


Can class be protected in c#?

0 Answers  


What are the 3 types of comments in c#?

0 Answers  


Is namespace necessary in c#?

0 Answers  


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?

0 Answers   Siebel,






what is meant inheritance. can you exaplain what kind inhertance ussed in your project

1 Answers  


update data in an xml file which resides in solution itself, using silverlight 4.0

0 Answers  


How jit (just in time) works?

0 Answers  


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

1 Answers   iGate,


Is null == null c#?

0 Answers  


What are strings in c#?

0 Answers  


Categories