Check out example codes for "c# mixed multidimensional array". It will help you in understanding the concepts better.
Code Example 1
//You can't do that. Instead,
//you should create a class that contains these two properties,
//then you can create an array of that type:
public class MyClass
{
public string ControlName {get;set;}
public bool MyBooleanValue {get;set;}
}
public MyClass[] myValues=new MyClass[numberOfItems];
//use a dictionary if one of the properties is meant to be
//used to perform lookups.
// Added By Barry Cox
Learn ReactJs, React Native from akashmittal.com