How to find default mail client using C#? i checked some posted here but it didn't help me..
I used this code
object mailClient = Microsoft.Win32.Registry.GetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Mail", "", "none");
In my computer both windows live mail and outlook installed and the defualt client is windows live mail however if i print mailclient it will show defualt mail client as outlook.
but if i use System.Diagnostics.Process.Start("mailto:")
then it will open in windows live mail which is correct.
i need a method to find defualt client through C# code.....