HP
Holger Persch
July 17, 2003 05:29 AM UTC
I solved it by myself. I found two ways:
1) string strVersion = Application.ProductVersion;
2) Assembly assembly = Assembly.GetCallingAssembly();
string strVersion = assembly.GetName().Version.ToString();
BTW, the Application class offers also access to additional information like ProductName and so on.
Regards,
Holger