If I have a jagged array set out like this:
[0][0]{128}
[0][1]{512}
[1][0]{64}
How would I get both the indexes of the number. So if I tried to get 64 I would get something like 0,1 indicating the index of the item. I tried using the Array.IndexOf() method but I get -1 as it isn't built for jagged arrays. Format of the output isn't important. It can be a string, two intergers, a byte array, anything.