Click or drag to resize

CommonUtilDeserializeSimpleJoinedT Method

Deserialzies a string that was created by the DeserializeSimpleJoinedT(String, String) method.

Namespace: RCS.Carbon.Shared
Assembly: RCS.Carbon.Shared (in RCS.Carbon.Shared.dll) Version: 9.0.12
Syntax
C#
public static T DeserializeSimpleJoined<T>(
	string joined,
	string joiner = ""
)
where T : class, new()

Parameters

joined  String
The joined string of tokens.
joiner  String  (Optional)
The string of characters that join the tokens. Default is newline ("\n").

Type Parameters

T
The Type of object to be deserialized.

Return Value

T
An instance of an object type T with property values set from the joined string.
Exceptions
ExceptionCondition
CarbonException
See Also