C# Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 199 Page Views: 

Can you use goto in c# programs?



Posted By: Avi Date: 13 October 2010 12:49:47 PM
 Answer:

Yes


Posted By: avibtech


Date: 13 October 2010 12:49:47 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image wcnECh
Related Questions
C# : How do you use random number generator in c#?

How do you use random number generator in c#?

Random r = new Random(); double t = r.NextDouble();
Category: C# Date: 10/14/2010 1:12:47 AM
C# : What would be the type of variable x? 
var x = new int[] {4,5,6};

What would be the type of variable x? var x = new int[] {4,5,6};

System.Int32[]
Category: C# Date: 10/14/2010 12:20:46 AM
C# : How do you declare extension method for string class?

How do you declare extension method for string class?

static class Sample { public static Function(this string s, /* other parameters */) {} }
Category: C# Date: 10/14/2010 12:03:31 AM
C# : What will be result of this code:
class C1 
{ protected int A = 0;
  public void B() { console.writeLine(A); }}
class C2 : C1 {public void B() { Console.WriteLine(A+10); }}
static void Main(string[] args)
{
C1 c = new C2();
c.B();
}
C# : What does the #region directive do?

What does the #region directive do?

It defines region in the code that can be collapsed into one line in Visual Studio
Category: C# Date: 10/13/2010 11:09:14 PM