Чтобы использовать в C #, после добавления ссылки, вы используете это так:
// Put this at the top of the file, with the other "using..." lines
using MySql.Data.MySqlClient;
// [...]
public Form1() {
MySqlConnection myCon = new MySqlConnection();
MySqlDataAdapter myAdapter = new MySqlDataAdapter("SELECT * FROM foo;", myCon);