編譯器錯誤 CS0140
標籤 'label' 重複
具有相同名稱的標籤重複出現。 如需詳細資訊,請參閱 goto。
下列範例會產生 CS0140:
C#
// CS0140.cs
namespace MyNamespace
{
public class MyClass
{
public static void Main()
{
label1: int i = 0;
label1: int j = 0; // CS0140, comment this line to resolve
goto label1;
}
}
}