从数据库读取的信息用数组存储的。
之后添加到arraylist中
现在想从arraylist中取出这个这个数组的值
arraylist中的结果是array[0]--object[0]的样式
请问如何让这个object转成string?
     command.CommandText = "select " + m + " from " + table;            SQLiteDataReader reader = command.ExecuteReader();            while (reader.Read())            {                for (int j = 0; j < a.Count; j = j + 2)                {
                    c.Add(Convert.ToString(reader[a[j]]));
                }
                ArrayInfo.Add(c);
            }----------------------------------------------------
arraylist d=ArrayInfo
 foreach (object d in a)                    {
                        string m = (string)d;
                            if (m.Equals(textBox2.Text))                            {                                MessageBox.Show("good");
                            }                                                                    }