IObjectSerializer.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.
Deserialize string into an object of the given type.
public T Deserialize<T>(string value);
abstract member Deserialize : string -> 'T
Public Function Deserialize(Of T) (value As String) As T
Type Parameters
- T
The type of the deserialized object.
Parameters
- value
- String
The string to deserialize.
Returns
The deserialized object.