Can I assume you're using the MySQL .NET Connector?
http://dev.mysql.com/downloads/connector/net
If so, here's a pretty simple example of what you're looking for:
http://forums.mysql.com/read.php?38,98672,98868#msg-98868
After executing your Insert-Command (C#, Connection is stored in
conDBConnection):
> string strSQLSelect = "SELECT @@IDENTITY AS 'LastID'";
> MySqlCommand dbcSelect = new MySqlCommand(strSQLSelect,
> conDBConnection); MySqlDataReader dbrSelect =
> dbcSelect.ExecuteReader();
>
> dbrSelect.Read(); int intCounter =
> Int32.Parse(dbrSelect.GetValue(0).ToString());
>
> dbrSelect.Dispose(); conDBConnection.Close();
Happy Coding!