about summary refs log tree commit diff
path: root/MatrixRoomUtils.Core/Extensions/ObjectExtensions.cs
blob: cf798ce4d31c27af3ea901cafa776f642bd46722 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Text.Json;

namespace MatrixRoomUtils.Extensions;

public static class ObjectExtensions
{
    public static string ToJson(this object obj, bool indent = true, bool ignoreNull = false)
    {
        var jso = new JsonSerializerOptions();
        if(indent) jso.WriteIndented = true;
        if(ignoreNull) jso.IgnoreNullValues = true;
        return JsonSerializer.Serialize(obj, jso);
    }
}