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: 15.0.2.11458
Syntaxpublic static bool TryParse(
string str,
out VersionRange result
)
Parameters
- str
- Type: SystemString
The version range string. - result
- Type: Demo3D.PackageManagerVersionRange
The parsed version range, if parsed successfully. Null otherwise.
Return Value
Type:
BooleanTrue if the version range was parsed successfully, false otherwise.
See Also