Json – How to correctly manage databinding and serialization/deserialization of a BitmapImage?
That's my basic code: public class MyObject { public decimal MyDeciaml { get; set; } public string? MyImageBase64 { get { if (MyImageBase64 != null) { byte[] imageBytes = Convert.FromBase64String(MyImageBase64); using (MemoryStream stream = new MemoryStream(imageBytes)) { BitmapImage bitmapImage =…