C# Class Ludiq.Reflection.Internal.TypeSerializer

An utility class to simply serialize and deserialize .NET types in a Unity context.
Show file Open project: lazlo-bonin/unity-reflection

Public Methods

Method Description
Deserialize ( string fullName ) : Type

Deserializes the specified full type name to a type.

Serialize ( Type type ) : string

Serializes the specified type to its full name.

Method Details

Deserialize() public static method

Deserializes the specified full type name to a type.
public static Deserialize ( string fullName ) : Type
fullName string
return System.Type

Serialize() public static method

Serializes the specified type to its full name.
public static Serialize ( Type type ) : string
type System.Type
return string