Navigation
This page has not been translated yet. Showing the default language version.

VSC0015: Does not support goto statement

Property Value
ID VSC0015
Category Compiler
Severity Error
Runtime Version 3.1.0 ~ latest
Compiler Version 1.0.0 ~ latest

Does not support goto statement

Example

Code with Diagnostic

using UdonSharp;

class TestBehaviour0 : UdonSharpBehaviour
{
    public void TestMethod()
    {
        goto label1;
        ~~~~~~~~~~~~

label1:
        return;
    }
}

Code with Fix

// NOT YET PROVIDED