I have an array such as
string[,] SSISVariableNameValue = new string[,]
{
{"DestinationConfigDB","dest db"},
{"DestinationServer","dest server"},
{"SourceConfigDB","source db"},
{"SourceServer","source server"},
{"SSISConfigFilter","filter"}
};
The .length property is listed as 10. How can i get the 'x' axis of this array..aside from dividing by 2?