Click or drag to resize
MacroValidationHelperTryParseGuids Method
Returns collection of Guids from input string, where every string representation of a Guid is separated with semicolon. If any of the string representations of a Guid can not be parsed to Guid, then false is returned and guids is null.

Namespace: CMS.ContactManagement.Internal
Assembly: CMS.ContactManagement (in CMS.ContactManagement.dll) Version: 10.0.0
Syntax
C#
public static bool TryParseGuids(
	string stringGuids,
	out ICollection<Guid> guids
)

Parameters

stringGuids
Type: SystemString
Guids separated with semicolon.
guids
Type: System.Collections.GenericICollectionGuid
Guids parsed from stringGuids.

Return Value

Type: Boolean
See Also