Labels and GOTOs are considered bad practice and as far as I know there is no reason to use it in C#.
GOTO
What is the use of labels in C#?
If (audience.LikesGoTo == true) { goto LabelThatSupportGoTo; } else { goto LabelForRejectGoTo; }