string ID=reader["ID"].ToString();或者object obj=reader["ID"];如果知道ID列具体是第几列的话(比如第5列),也可以用下标string ID=reader[5].ToString();或者object obj=reader[5];