Given a version string convert it to an array of VersionSpec objects.
If the version specification did not contain a range specifier then this will return an array of size one. Otherwise, an array of size two.
Namespace:  Microsoft.TeamFoundation.VersionControl.Server
Assembly:  Microsoft.TeamFoundation.VersionControl.Server (in Microsoft.TeamFoundation.VersionControl.Server.dll)
Syntax
'Declaration
Public Shared Function Parse ( _
    versionSpec As String, _
    user As String _
) As VersionSpec()
public static VersionSpec[] Parse(
    string versionSpec,
    string user
)
public:
static array<VersionSpec^>^ Parse(
    String^ versionSpec, 
    String^ user
)
static member Parse : 
        versionSpec:string * 
        user:string -> VersionSpec[] 
public static function Parse(
    versionSpec : String, 
    user : String
) : VersionSpec[]
Parameters
- versionSpec
 Type: System.String
- user
 Type: System.String
Return Value
Type: array<Microsoft.TeamFoundation.VersionControl.Server.VersionSpec[]
Returns VersionSpec.
.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.