Hi,
How to select random value from following 2D Array
string[,] GeoLocation = new string[,]{
{"-0.174464","51.542180"},
{"-0.172925","51.548507"},
{"-0.178464","51.556919"},
{"-0.178487","51.556902"}
};
Hi,
How to select random value from following 2D Array
string[,] GeoLocation = new string[,]{
{"-0.174464","51.542180"},
{"-0.172925","51.548507"},
{"-0.178464","51.556919"},
{"-0.178487","51.556902"}
};
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Feb 18, 2014, 5:15 AM
Random r = new Random();
Sharad GuptaPosted Feb 18, 2014, 4:43 AM
Ganesh M
I think It may help you.