Check out example codes for "populate combobox from array c#". It will help you in understanding the concepts better.
Code Example 1
BindingSource theBindingSource = new BindingSource();
theBindingSource.DataSource = myCustArray;
myComboBox.DataSource = bindingSource.DataSource;
Learn ReactJs, React Native from akashmittal.com