求dataGridView中查找指定值的方法
有什么好的效率高的方法?

解决方案 »

  1.   

    遍历dataGridView
    不知道dataGridView中有没有直接可以用的什么方法?
      

  2.   

    datagirdview可以对列排序,然后在进行查找
    如果数据是基本有序的话,二分法应该比较快吧
      

  3.   

    请问dataGridView 下有没有诸如comboBox中的FindString方法呢?
    this.comboBox1.FindString(...);
      

  4.   

    请问dataGridView 下有没有诸如comboBox中的FindString方法呢? 
    this.comboBox1.FindString(...);
    使用系统内置的方法应该比较快把。