SystemSerializer.Deserialize<T>(String) 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>(string value);
abstract member Deserialize : string -> 'T
override this.Deserialize : string -> 'T
Public Function Deserialize(Of T) (value As String) As T
Type Parameters
- T
Type to convert value to.
Parameters
- value
- String
Value from storage to convert.
Returns
Deserialized value or default value.