SystemSerializer.Deserialize<T>(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Take a primitive value from storage and return it as the requested type using the ChangeType(Object, Type) API.
public T Deserialize<T> (object value);
abstract member Deserialize : obj -> 'T
override this.Deserialize : obj -> 'T
Public Function Deserialize(Of T) (value As Object) As T
Type Parameters
- T
Type to convert value to.
Parameters
- value
- Object
Value from storage to convert.
Returns
T
Deserialized value or default value.