Where do we set the min and max pool size for connection pooling?


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

Post New Answer

More C Sharp Interview Questions

what is object-oriented programming (oop) language?

0 Answers  


Can we override constructor in c#?

0 Answers  


How long can a string be c#?

0 Answers  


Can we have static indexer in c#?

0 Answers  


What is interface inheritance in c#?

0 Answers  






What is an abstract class c#?

0 Answers  


How do I do implement a trace and assert?

0 Answers  


i want o/p 011242110 in c# code.

0 Answers   TCS,


What is difference between web and window application?

0 Answers  


What are floating point numbers?

0 Answers  


Is class reference type 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,


Categories