You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 16, 2022. It is now read-only.
If I mark a type with the ZeroFormattableAttribute and add a private parameterless constructor, the analyzer will not give an error because it only checks if the constructor exists. However, the serialization will fail at runtime because the constructor needs to be accessible to the library by having an access modifier of public.
If I mark a type with the
ZeroFormattableAttributeand add a private parameterless constructor, the analyzer will not give an error because it only checks if the constructor exists. However, the serialization will fail at runtime because the constructor needs to be accessible to the library by having an access modifier ofpublic.