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#?
|
|
Labels and What is the use of labels in C#?
|
|||
|
|
|
XKCDhttp://xkcd.com/292/ |
|||
|
|
|
|
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
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. |
||||||||||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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... |
||
|
|
|
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. |
||
|
|
|
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. |
||
|
|
|
|
Labels without Using
In such a case using the |
||||||||||
|
|
|
It's hard to do switch statements without them. |
||||
|
|
|
While in principle I believe that there are legitimate uses for the |
||
|
|
|
|
The use of labels is to support |
||
|
|