Table of Contents

Interface ITypeSerializer

Namespace
Myra.MML
Assembly
Myra.dll

Defines the interface for serializing and deserializing types to and from strings.

public interface ITypeSerializer

Methods

Deserialize(string)

Deserializes a string to an object.

object Deserialize(string str)

Parameters

str string

The string to deserialize.

Returns

object

The deserialized object.

Serialize(object)

Serializes an object to a string.

string Serialize(object obj)

Parameters

obj object

The object to serialize.

Returns

string

The serialized string representation.