DTE2.Version Property
Gets the host application's version number.
Namespace: EnvDTE80
Assembly: EnvDTE80 (in EnvDTE80.dll)
Syntax
'Declaration
ReadOnly Property Version As String
string Version { get; }
property String^ Version {
String^ get ();
}
abstract Version : string with get
function get Version () : String
Property Value
Type: String
The host application's version number.
Remarks
The returned string has the following format:
D[D[.D[D]]][ (?+)]
where:
The letter D represents a base-ten digit.
Literal characters include period (.), comma (,), and opening and closing parentheses.
A question mark (?) matches any character.
A plus sign (+) matches one or more occurrences of any character in the above format description.
Brackets ([ ]) denote that the characters between the brackets are optional.
Note the space before the opening parenthesis.
An example result string:
2.45 (debug version)
Examples
Sub VersionExample()
msgbox(dte2.Version)
End Sub
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.