We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Get Syncfusion version programmatically

Hello,

Is there a way to get the current version info of Syncfusion programmatically?

1 Reply

VS Vallarasu S Syncfusion Team April 22, 2010 06:07 AM UTC

Hi Dave

You can use the following code to get the Product Name and Version details,

System.Type type = trackBarEx1.GetType();
string Version = System.Diagnostics.FileVersionInfo.GetVersionInfo(type.Assembly.Location).FileVersion;
string Name = System.Diagnostics.FileVersionInfo.GetVersionInfo(type.Assembly.Location).ProductName;
MessageBox.Show(Name + " - Version :" + Version);

Please let us know if you have any other queries

Regards
Vallarasu S.

Loader.
Live Chat Icon For mobile
Up arrow icon