How can I serialize and deserialize List<Dictionary<string, string>>within AOT? #107072
Unanswered
BoyFaceGirl
asked this question in
Q&A
Replies: 1 comment 1 reply
-
For what format? If it's JSON, then use [JsonSerializable(typeof(List<Dictionary<string, string>>))]
public partial class YourSerializerContext : JsonSerializerContext { } Then you can pass |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Do you have code examples?
Beta Was this translation helpful? Give feedback.
All reactions