MySqlConnection con = new MySqlConnection("caminho da base de dados");
MySqlCommand cmd = new MySqlCommand();
cmd.Connection = con;
con.Open();
cmd.CommandType = CommandType.Text;
string fu = "SELECT* FROM Tb_Banco where id=2";
cmd.CommandText = fu;
MySqlDataReader R;
R = cmd.ExecuteReader();
R.Read();
string Conta_Banco = R["Conta"].ToString();
string Nome_Banco = R["Banco"].ToString();
This question is almost a How To, so there goes a link to base it on, as we do not know how to deepen your knowledge, I leave this how to basic:
I also suggest that you try to learn Entity Framework!