Skip to content

Instantly share code, notes, and snippets.

View newpost's full-sized avatar
🎯
Focusing

hiboy newpost

🎯
Focusing
  • xi'an
  • 07:33 (UTC +08:00)
View GitHub Profile
@newpost
newpost / JsonSerializer.cs
Created July 5, 2024 02:41 — forked from relyky/JsonSerializer.cs
JsonSerializer, .NET5, json, 中文字不編碼, 換行與縮排, System.Text.Json, Indent
using System;
using System.Text.Json;
var foo = new { ... };
string json = JsonSerializer.Serialize(foo, new JsonSerializerOptions {
Encoder = System.Text.Encodings.Web.JavaScriptEncoder.UnsafeRelaxedJsonEscaping, // 中文字不編碼
WriteIndented = true // 換行與縮排
});