文件名称:JsonSrcGen:使用.NET 5源生成器的Json库
文件大小:205KB
文件格式:ZIP
更新时间:2024-04-09 15:13:18
csharp-sourcegenerator C#
JsonSrcGen 使用.NET 5 C#源代码生成器的Json库 注意:需要.NET 5才能运行。 支持的类型 类可以通过在类上定义Json属性来生成类序列化器 [ Json ] public class MyType { [ JsonName ( " my_name " )] public string MyProperty { get ; set } [ JsonIgnore ] public string IgnoredProperty { get ; set ;} } var converter = new JsonConverter (); ReadOnlySpan < char> json = convert . ToJson ( new MyType (){ MyProperty = " Some value " }); var myTy