What is difference between continue and break in c#?


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

Post New Answer

More C Sharp Interview Questions

One start and stop button is there and one textbox is there.when you click start button ,it will display 1,2,3......up to infinite in textbox.when you click stop button it will stop.

1 Answers  


Is equal in c#?

0 Answers  


Can abstract class have parameterized constructor?

0 Answers  


Difference between value and reference type.

0 Answers  


Hello.. This is kali prasad. i wish to learn C#. kindly guide me in making me expert in c#.

2 Answers  






What is .cshtml file?

0 Answers  


Why do we need serialization?

0 Answers  


What is the meaning of extention?

0 Answers  


Is string a primitive data type in c#?

0 Answers  


Why is hashset faster?

0 Answers  


Explain About Iunknown interface Queue

0 Answers   DELL,


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