Esempio n. 1
0
 /// <summary>
 /// Attempt to deserialize any Binary Encoded string into an object.
 /// </summary>
 /// <param name="input">The string to deserialize to an object.</param>
 /// <param name="type">The type to convert to.</param>
 /// <returns>An Object deserialized from the string.</returns>
 public static Object FromBinary(this String input)
 {
     return(DDRIT.FromBinary(input));
 }
Esempio n. 2
0
 /// <summary>
 /// Attempt to deserialize any Binary Encoded string into an object.
 /// </summary>
 /// <typeparam name="TResult">The type to convert to.</typeparam>
 /// <param name="input">The string to deserialize to an object.</param>
 /// <returns>An Object of type T deserialized from the string.</returns>
 public static TResult FromBinary <TResult>(this String input)
 {
     return(DDRIT.FromBinary <TResult>(input));
 }