Tanoda
|
A serializer/deserializer combo for some type(s). Used by the config system. More...
Properties | |
Func< object, Type, string > | ConvertToString [get, set] |
Used to serialize the type into a (hopefully) human-readable string. Object is the instance to serialize, Type is the object's type. More... | |
Func< string, Type, object > | ConvertToObject [get, set] |
Used to deserialize the type from a string. String is the data to deserialize, Type is the object's type, should return instance to an object of Type. More... | |
A serializer/deserializer combo for some type(s). Used by the config system.
Definition at line 16 of file TomlTypeConverter.cs.
|
getset |
Used to deserialize the type from a string. String is the data to deserialize, Type is the object's type, should return instance to an object of Type.
Definition at line 28 of file TomlTypeConverter.cs.
|
getset |
Used to serialize the type into a (hopefully) human-readable string. Object is the instance to serialize, Type is the object's type.
Definition at line 22 of file TomlTypeConverter.cs.