I have a class that initializes a collection to a default state. When I load the object from some saved JSON it appends the values rather than overwriting the collection. Is there a way to have the JSON.Net replace the collection when deserializing rather than append the values?
void Main() {
    string probMatrix = "{\"Threshold\":0.0276,\"Matrix\":[[-8.9,23.1,4.5],[7.9,2.4,4.5],[9.4,1.4,6.3]]}";
    var probabiltyMatrix = JsonConvert.DeserializeObject<ProbabiltyMatrix>(probMatrix);
    probabiltyMatrix.Dump();
}
// Define other methods and classes here
public class ProbabiltyMatrix {
    public ProbabiltyMatrix() {
        // Initialize the probabilty matrix
        Matrix = new List<double[]>();
        var matrixSize = 3;
        for (var i = 0; i < matrixSize; i++) {
            var probArray = new double[matrixSize];
            for (var j = 0; j < matrixSize; j++) {
                probArray[j] = 0.0;
            }
        Matrix.Add(probArray);
        }
    }
    public double Threshold;
    public List<double[]> Matrix;
}
                Yes.  Set the ObjectCreationHandling setting to Replace.  The default is Auto.
var settings = new JsonSerializerSettings();
settings.ObjectCreationHandling = ObjectCreationHandling.Replace;
var probabiltyMatrix = JsonConvert.DeserializeObject<ProbabiltyMatrix>(probMatrix, settings);
Fiddle: https://dotnetfiddle.net/aBZiim
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With