26 lines
585 B
C#
26 lines
585 B
C#
using System.Threading.Tasks;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Wino.Helpers
|
|
{
|
|
public static class JsonHelpers
|
|
{
|
|
public static async Task<T> ToObjectAsync<T>(string value)
|
|
{
|
|
return await Task.Run<T>(() =>
|
|
{
|
|
return JsonConvert.DeserializeObject<T>(value);
|
|
});
|
|
}
|
|
|
|
public static async Task<string> StringifyAsync(object value)
|
|
{
|
|
return await Task.Run<string>(() =>
|
|
{
|
|
return JsonConvert.SerializeObject(value);
|
|
});
|
|
}
|
|
}
|
|
}
|