C# Goto Statement - Goto Statement in C#
C# Goto Statement
- It is used to transfer control to the other part of the program and unconditionally jumps to the specified label. So, it is also known as jump statement.
- It can be used to transfer control from deeply switch case label or nested loop.
- In C# it is avoided to use Goto statement because it makes the program complex.