Looping Values of Column of a BindingSource
for (int i = 0; i < BindingSourceName.Count; i++) { object Value = (object) (((DataRowView)BindingSourceName.List[i]).Row[IndexOfWantedColumn]); }
for (int i = 0; i < BindingSourceName.Count; i++) { object Value = (object) (((DataRowView)BindingSourceName.List[i]).Row[IndexOfWantedColumn]); }