Answer Posted / amina awan
Multiple catch blocks will not be executed. But we can use multiple catch blocks for a try block. The respective catch block will get executed according to the error arises.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Is c# difficult to learn?
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; } }
What is view state c#?
What is the use of thread join in c#?
write code for inserting and updating recoards in sql server database using connected architecture & records shoulds displayed in grid view ( use c# )
What are most desktop applications written in?
How can I get the ascii code for a character in c#?
What is parameterized constructor?
What is console writeline in c#?
What are the problem with .NET generics?
Differentiate between dataset and datareader?
What is orm in c#?
Where is the keyword void used?
Explain Constructor and destructor?
How big is int16?