AddInToken.Version 属性  
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 AddInAttribute 特性中指定的外接程序版本。
public:
 property System::String ^ Version { System::String ^ get(); };
	public string Version { get; }
	member this.Version : string
	Public ReadOnly Property Version As String
	属性值
外接程序的版本;如果 AddInAttribute 特性中未指定版本号,则为 null。
示例
以下示例显示控制台的 Name、、AddInFullName、PublisherDescriptionAssemblyName、 和 Version 属性的值。 此代码示例是为 AddInToken 类提供的一个更大示例的一部分。
// Show the token properties for each token
// in the AddInToken collection (tokens),
// preceded by the add-in number in [] brackets.
int tokNumber = 1;
foreach (AddInToken tok in tokens)
{
    Console.WriteLine(String.Format("\t[{0}]: {1} - {2}\n\t{3}\n\t\t {4}\n\t\t {5} - {6}",
        tokNumber.ToString(),
        tok.Name,
        tok.AddInFullName,
        tok.AssemblyName,
        tok.Description,
        tok.Version,
        tok.Publisher));
    tokNumber++;
}
' Show the token properties for each token 
' in the AddInToken collection (tokens),
' preceded by the add-in number in [] brackets.
Dim tokNumber As Integer = 1
For Each tok As AddInToken In tokens
    Console.WriteLine(vbTab & "{0}: {1} - {2}" & _
            vbLf & vbTab & "{3}" & _
            vbLf & vbTab & "{4}" & _
            vbLf & vbTab & "{5} - {6}", _
            tokNumber.ToString, tok.Name, _
            tok.AddInFullName, tok.AssemblyName, _
            tok.Description, tok.Version, tok.Publisher)
    tokNumber = tokNumber + 1
Next
	注解
版本号是自由格式的字符串。