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.
Up arrow icon