mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-11 09:53:13 +00:00
14 lines
282 B
C#
14 lines
282 B
C#
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Core
|
|||
|
|
{
|
|||
|
|
public static class SerializeGate
|
|||
|
|
{
|
|||
|
|
public static T Gate<T>(T anything)
|
|||
|
|
{
|
|||
|
|
var json = JsonConvert.SerializeObject(anything);
|
|||
|
|
return JsonConvert.DeserializeObject<T>(json)!;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|