ComCompatibleVersionAttribute Class
Assembly: mscorlib (in mscorlib.dll)
'Declaration <AttributeUsageAttribute(AttributeTargets.Assembly, Inherited:=False)> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class ComCompatibleVersionAttribute Inherits Attribute 'Usage Dim instance As ComCompatibleVersionAttribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Assembly, Inherited=false) */ /** @attribute ComVisibleAttribute(true) */ public final class ComCompatibleVersionAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Assembly, Inherited=false) ComVisibleAttribute(true) public final class ComCompatibleVersionAttribute extends Attribute
You can apply this attribute to assemblies.
By default, the Type Library Exporter (Tlbexp.exe) uses an assembly's version number to calculate class identifiers (CLSIDs). All public, COM-visible classes receive new CLSIDs each time you export a new assembly version.
You can apply the ComCompatibleVersionAttribute attribute to force all CLSIDs for classes in the current version of an assembly to be the same as CLSIDs for classes in an earlier version of the assembly. As long as the CLSIDs remain the same, a legacy COM application can use the later version of a compatible assembly after you uninstall the original assembly. If you apply the System.Runtime.InteropServices.GuidAttribute to a class to explicitly set its CLSID, the ComCompatibleVersionAttribute has no effect.
The properties of this attribute combine to form the four parts of an assembly version. Always specify the lowest version that the current assembly is backward compatible with so that version is used to calculate all CLSIDs in the assembly.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.