We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var data = new DeserializerBuilder().WithNamingConvention(CamelCaseNamingConvention.Instance).Build().Deserialize<dynamic>(savedData);
Ive used that to deserialize a yalm file and modify his content and then re serialize it but for example the string arrays doesnt serealitze well
from:
scopes: - "openid" - "link" - "bong" - "item" - "lol" - "agent" - "offline_access"
to :
scopes: - openid: "- openid" - link: "- link" - bong: "- bong" - item: "- item" - lol: "- lol" - agent: "- agent" - offline_access: "- offline_access"
The text was updated successfully, but these errors were encountered:
to serialize it i use this:
new Serializer().Serialize(data)
Sorry, something went wrong.
Ok nevermind
i was using a homemade crappy function to add custom spaces and that what broke the array :C sory
No branches or pull requests
var data = new DeserializerBuilder().WithNamingConvention(CamelCaseNamingConvention.Instance).Build().Deserialize<dynamic>(savedData);
Ive used that to deserialize a yalm file and modify his content and then re serialize it but for example the string arrays doesnt serealitze well
from:
to :
The text was updated successfully, but these errors were encountered: