Open Jand42 opened 6 years ago
TypedJson.Serialize/Deserialize
is currently not compatible between client/server because of this, so I am changing this to a bug. Workaround: convert to regular properties (e.g. with VS's "Convert to full property" lightbulb menu option)
Currently, C# auto-implemented properties translate to a field with name
$PropertyName
(independent ofName
attribute use), and both getter and setter is added as separate functions.This is unnecessary bloat, it would be possible to just treat them the same as fields.
Extra concerns that need to be tested:
Name
attribute.