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

VSC0006: Multidimensional arrays are not yet supported

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

Multidimensional arrays are not yet supported

Example

Code with Diagnostic

using UdonSharp;

class TestBehaviour0 : UdonSharpBehaviour
{
    public void TestMethod()
    {
        var arr = new int[1, 2];
                  ~~~~~~~~~~~~~
    }
}

Code with Fix

// NOT YET PROVIDED