Parse

Parse(string)

Converts the string representation of an UID to its typed equivalent.

public static Uid Parse(string s)
ParameterTypeDescription
sStringA string containing an UID to convert.

Return Value

A typed Uid equivalent to the UID contained in s.

Remarks

If the requested UID is not found in the list of registered UIDs, a new unknown Uid (Type is Unknown) with Code, Name based on the given s is returned.

See Also


Parse(string, IFormatProvider?)

public static Uid Parse(string s, IFormatProvider? provider)

See Also


Parse(ReadOnlySpan<char>, IFormatProvider?)

public static Uid Parse(ReadOnlySpan<char> s, IFormatProvider? provider)

See Also