vote up 1 vote down star

Labels and GOTOs are considered bad practice and as far as I know there is no reason to use it in C#.

What is the use of labels in C#?

flag

70% accept rate
They give other programmers a reason to complain about your code :-) – Ian Ringrose Mar 19 at 15:59

12 Answers

vote up 17 vote down

XKCDhttp://xkcd.com/292/

link|flag
vote up 11 vote down

There is nothing wrong with labels and goto's in themselves. The problem is that people tend to abuse them which does create a problem.

Typical use of a label

OperationStart:
  if ( !TrySomeOperation() ) {
    if ( MaybeFixOperation() ) { 
      goto OperationStart;
    }
  }

You'd need to make some assertions that you couldn't hit an infitite loop, but given a reasonable set of guarantees there's nothing inherently wrong with this code.

link|flag
I think this is the most common use of goto. – dr. evil Mar 19 at 15:36
"there's nothing inherently wrong with this code" you mean except the fact that it is not very readable ? if you had it written with : while(!TrySomeOperation() && MaybeFixOperation()) {} it makes it much more obvious that you're (possibly infinitely) looping. – Aiua Mar 19 at 15:38
Readability is in the eye of the reader. I followed it fine. – Perchik Mar 19 at 15:39
1  
-1 to Aiua's comment. does the hand flying over head motion – Samuel Mar 19 at 15:58
i think this is the only one code sample where it is allowed (o; – michl86 Mar 23 at 14:40
vote up 4 vote down

Just because they are a disreputable practice, doesn't mean to should close off any possibility of using them. While they may never actually be required, they are occasionally the best way to go.

link|flag
vote up 2 vote down

When you are implementing a small finite state machine you can use a label for each state and goto for state transitions. This is one of the standard methods of implanting finite state machines and can lead to clear code, provided there is a diagram of the state machine in a document that the code comments point to.

Sometimes the problem domain, e.g. telecoms protocols is defined by finite state machines, most of the time you don’t see finite state machine often.

Gotos and labels are also very useful for machine-generated code, if you are writing a simple compiler that outputs C# you may be very glad of them.

link|flag
vote up 0 vote down

I think it was a marketing decision..

Microsoft wants all kinds of developers using their C# language, and if you add labels, it makes transition for some programmers easier. It also makes it easier to port old code to their language...

link|flag
For the record: I am not a MS hater.. I am loving C# as much as the next guy.. and I think it was a smart move to add labels and goto statements... – Arcturus Mar 19 at 15:44
vote up 0 vote down

I read somewhere, goto in most cases should just be use for jumping forward, so most likely just for early loop terminations and for continuing the outer loop since there are no labeled loops in C# (unlike Java). And there are some algorithms that can be elegantly expressed with goto than doing it the structured way.

link|flag
This is the way I use gotos. For nested loops, sometimes it's easier to just goto some label, instead of trying to figure out how to break out of which loop. – Perchik Mar 19 at 15:41
vote up 0 vote down

Sometimes a well placed 'goto' is more elegant/readable than other techniques. Putting 'goto's around when they're not needed is certainly a bad practice. As always, each situation should be judged carefully.

For example, 'goto's can be nice when your function needs to do cleanups in case it fails. You place a label at the end of the function, where you do your cleanup, then 'goto' it in case of a failure.

Nevertheless, 'goto's have become less useful in C# than in C. For example, proper usage of exception handling can obviate the need of 'goto' in some scenarios.

link|flag
vote up 0 vote down

Labels without goto are useless, they do nothing.

Using goto is considered a bad practice. But there is a case where it can't be avoided: breaking out of nested loops:

foreach(...) {
  foreach(...) {
    if(...) {
      goto OuterLabel;
    }
  }
}
OuterLabel:

In such a case using the break statement would just break the most inner loop.

link|flag
Why not put the two foreach looks inside of there own method, then you can just use a return statement to break out. Most examples of goto I have seen are in long methods, I don't like long methods. – Ian Ringrose Mar 19 at 15:47
Agreed, using a separate method is a good approach, because the return statement is able to break out of the entire method. – Michael Damatov Mar 19 at 15:52
1  
Some people (myself included) don't like creating methods just to create them. – Perchik Mar 19 at 15:53
Create a method lets you give a name to the foreach loops, hence letting the code be self documenting – – Ian Ringrose Mar 19 at 16:24
vote up 0 vote down

Goto considered harmful

link|flag
vote up 0 vote down

It's hard to do switch statements without them.

link|flag
It is? I seem to manage.. Can you give an example? – Blorgbeard Mar 20 at 12:19
The case and default statements are labels. You can see this with: switch (x) { case 1: if (oneEqualsTwo) goto case 2; break; case 2: break; } This is made clearest in the ECMA spec for C#: csharpfriends.com/Spec/… – mancaus Mar 31 at 9:11
vote up 0 vote down

While in principle I believe that there are legitimate uses for the goto statement, in practice I've been developing in C# since it was first released and I didn't know it had a goto statement until now.

link|flag
vote up -1 vote down

The use of labels is to support goto. Bad as goto may be, if you have goto in the language, then you need labels. Without goto, labels are indeed useless in C#.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.