Pues es tan sencillo como asociar un delegado al evento:
Código C#:
Ver originalprivate void CrearTabla()
{
DataTable tabla = new DataTable();
tabla.RowDeleting += new DataRowChangeEventHandler(deleteRowFunction);
}
private void deleteRowFunction(object sender,
DataRowChangeEventArgs e )
{
}