Click or drag to resize

SemVersionRangeTryParse Method

Attempts to convert a string representation of a semantic version range to the SemVersionRange 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
Syntax
C#
public static bool TryParse(
	string str,
	out SemVersionRange result
)

Parameters

str
Type: SystemString
The semantic version range string.
result
Type: Demo3D.PackageManagerSemVersionRange
The parsed semantic version range, if parsed successfully. Null otherwise.

Return Value

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