Reputation: 693
Can I search and modify certain values in a Json string without serialization and deserialization?
Upvotes: 0
Views: 183
Reputation: 761
It's just a string in C# so you could do something like replace or use regex.
I wouldn't recommend it though.
Upvotes: 2