Gets the control’s AssemblyFileVersion as a string. The AssemblyFileVersion is also viewable from the properties dialog of the control assembly dll.

Namespace:  C1.Web.C1WebChart
Assembly:  C1.Web.C1WebChart.2 (in C1.Web.C1WebChart.2.dll)

Syntax

C#
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
public string AssemblyFileVersionString { get; }
Visual Basic
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> _
Public ReadOnly Property AssemblyFileVersionString As String
	Get

Remarks

The AssemblyFileVersion is different from the AssemblyVersion. The AssemblyFileVersion is viewable from the properties dialog of the control assembly dll. The AssemblyVersion is also listed in the properties dialog, but only in the “other version information” section. When viewing the Global Assembly Cache (GAC) in Windows Explorer, the AssemblyVersion is shown as a standard column.

The AssemblyFileVersion will always change with each separate release of the Chart control, including internal changes. The AssemblyVersion will only change when the object model has been changed.

See Also