Class Serialization
Inheritance
Serialization
Assembly: Xareus.Utils.dll
Syntax
public static class Serialization
Methods
Deserialize(Type, string)
Declaration
public static object Deserialize(Type elementType, string data)
Parameters
| Type |
Name |
Description |
| Type |
elementType |
|
| string |
data |
|
Returns
Deserialize<T>(string)
Declaration
public static T Deserialize<T>(string data)
Parameters
| Type |
Name |
Description |
| string |
data |
|
Returns
Type Parameters
Serialize(Type, object)
Declaration
public static string Serialize(Type elementType, object element)
Parameters
| Type |
Name |
Description |
| Type |
elementType |
|
| object |
element |
|
Returns
Serialize<T>(T)
Declaration
public static string Serialize<T>(T element)
Parameters
| Type |
Name |
Description |
| T |
element |
|
Returns
Type Parameters