Answer Posted / azaruddin
Multiple processes must agree that they will share the same connection, where every parameter is the same, including the security settings.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is private protected in c#?
What are the two uses of a ‘using’ statement in c#?
what is IFormatable
Can you change the value of a constant filed after its declaration?
What is dll in vb.net?
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; } }
Does c# support parameterized properties?
Explain the functionalities of satellite assembly?
What is hashset c#?
Explain the features of an abstract class in net.
Which are the loop types available in c#?
Can a class have multiple constructors c#?
How can an inner class access the members of outer class?
Are private members inherited in c#?
What is a Managed Code??