VBScript の変数、多次元配列変数

Option Explicit

Dim A(1,1)

A(0,0) = "0,0"
A(0,1) = "0,1"
A(1,0) = "1,0"
A(1,1) = "1,1"

MsgBox A(0,0)
MsgBox A(0,1)
MsgBox A(1,0)
MsgBox A(1,1)
Option Explicit

Dim A(1,1,1)

A(0,0,0) = "0,0,0"
A(1,1,1) = "1,1,1"

MsgBox A(0,0,0)
MsgBox A(1,1,1)