{
myvariable[0];
}
if (BarsInProgress == 1)
{
}
myvariable[0][0];
myvariable[1][0];
but I don't know how to work with this. Every time I try to declare myvariable, I get the error:
"cannot apply indexing with [] to an expression of type 'double'."
Where can I learn how to use myvariable[0][0]; instead of
{
myvariable[0];
}
Comment