This topic is not available in your language. Therefore, the original version (ja-jp) is displayed.
VSC0013: Does not support multidimensional array access
| Property | Value |
|---|---|
| ID | VSC0013 |
| Category | Compiler |
| Severity | Error |
| Runtime Version | 3.1.0 ~ latest |
| Compiler Version | 1.0.0 ~ latest |
Does not support multidimensional array access
Example
Code with Diagnostic
using UdonSharp;
class TestBehaviour0 : UdonSharpBehaviour
{
public void TestMethod()
{
var arr = new int[1, 2];
arr[0, 0] = 1;
~~~~~~~~~
}
}Code with Fix
// NOT YET PROVIDED