SerializationHelperDeserialize Method |
Deserialize an object
Namespace:
DigitalRuby.WeatherMaker
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public static Object Deserialize(
byte[] bytes,
Type type = null
)
Public Shared Function Deserialize (
bytes As Byte(),
Optional type As Type = Nothing
) As Object
public:
static Object^ Deserialize(
array<unsigned char>^ bytes,
Type^ type = nullptr
)
static member Deserialize :
bytes : byte[] *
?type : Type
(* Defaults:
let _type = defaultArg type null
*)
-> Object
Parameters
- bytes
- Type: SystemByte
Bytes to deserialize - type (Optional)
- Type: SystemType
Type of object if known
Return Value
Type:
ObjectDeserialized object
See Also