|
CommonUtil.DeserializeSimpleJoined<T> Method
|
Deserialzies a string that was created by the DeserializeSimpleJoined<T> (String, String) method.
Namespace: RCS.Carbon.SharedAssembly: RCS.Carbon.Shared (in RCS.Carbon.Shared.dll) Version: 9.1.14
Syntaxpublic 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
TAn instance of an object type
T with property values set from the
joined string.
Exceptions
See Also