| YamlConvertDeserializeObjectT Method |
Deserializes the YAML to the specified .NET type.
Namespace:
Cauldron.Yaml
Assembly:
Cauldron.Yaml (in Cauldron.Yaml.dll) Version: 3.2.0.1 (3.2.0.1)
Syntax public static T[] DeserializeObject<T>(
string value
)
where T : class, new()
Parameters
- value
- Type: SystemString
The YAML to deserialize.
Type Parameters
- T
- The type of the object to deserialize to.
Return Value
Type:
TThe deserialized object from the YAML string.
See Also