Is there a tool that can extract C-sharp attributes to generate JSON?

is there a tool that can extract C-sharp attributes to generate JSON?
preferably the VS plug-in

Mar.18,2021

you can try this online tool: http://csharp2json.io/


serialize the object, and then

JsonConvert.SerializeObject

refer to JSON using DataContract and DataMember

Menu