Class Vector2IntSerializer
This class is used to serialize and deserialize Vector2Ints.
Inherited Members
Namespace: InsaneScatterbrain.Serialization
Syntax
public class Vector2IntSerializer : ISerializer, IDeserializer
Properties
Type
The type to serialize.
Declaration
public Type Type { get; }
Property Value
Type | Description |
---|---|
Type |
Methods
Deserialize(string)
Deserializes the string to object.
Declaration
public object Deserialize(string serializedObj)
Parameters
Type | Name | Description |
---|---|---|
string | serializedObj | The serialized string. |
Returns
Type | Description |
---|---|
object |
Serialize(object)
Serializes the object to string.
Declaration
public string Serialize(object obj)
Parameters
Type | Name | Description |
---|---|---|
object | obj | The object to serialize. |
Returns
Type | Description |
---|---|
string | The serialized string. |