Working on some neat projects and actually learning C# along with MAUI/Uno/Avalonia UI frameworks.
One of the things I’ve come to really like is the simplicity of serializing and deserializing class instances to /from JSON.
In C# this is a one liner. In Xojo its a pile of work to read the JSON, create an instance & then copy the Json data into the new instance
In C# literally
var item = JsonSerializer.Deserialize<Type
… Read the rest