In PHP we can do this to use a custom array index:
and access it by:
I've had a look around, but I can't seem to find a way of doing this in C#.
Is it possible to do that?
Code:
$array = array("my_index" => "my_index's value");
Code:
echo $array['my_index'];
Is it possible to do that?
Comment