I have a class that initializes the collection to its default state. When I load an object from some stored JSON, it adds values, not overwrites the collection. Is there a way for JSON.Net to replace the collection during deserialization rather than adding 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();
}
public class ProbabiltyMatrix {
public ProbabiltyMatrix() {
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;
}
source
share