Click or drag to resize

VersionRangeTryParse Method

Attempts to convert a string representation of a version range to the VersionRange equivalent, and returns a value to indicate whether the conversion succeeded.

Namespace: Demo3D.PackageManager
Assembly: Demo3D.Core (in Demo3D.Core.dll) Version: 19.00.00
Syntax
C#
public static bool TryParse(
	string str,
	out VersionRange result
)

Parameters

str  String
The version range string.
result  VersionRange
The parsed version range, if parsed successfully. Null otherwise.

Return Value

Boolean
True if the version range was parsed successfully, false otherwise.
See Also