You can do this through WMI: the class you need is Win32_Product.
It's really easy in Powershell:
Get-WmiObject -Class Win32_Product
will get the list of installed products, which you can then filter.
In C#, try the System.Management namespace:
public bool CheckForMySQLServer()
{
string query = "SELECT Name FROM Win32_Product WHERE Name LIKE '%MySQL Server%'";
var searcher = new ManagementObjectSearcher(query);
var collection = searcher.Get();
return collection.Count > 0;
}
Note that this is hideously slow - takes over a minute on my PC - but you can get hold of the version number string if you need (see the GetText() method on the collection items).