ZeroFormatter icon indicating copy to clipboard operation
ZeroFormatter copied to clipboard

Infinitely Fast Deserializer for .NET, .NET Core and Unity.

Results 73 ZeroFormatter issues
Sort by recently updated
recently updated
newest added

Bumps System.Security.Cryptography.X509Certificates from 4.1.0 to 4.1.2. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=System.Security.Cryptography.X509Certificates&package-manager=nuget&previous-version=4.1.0&new-version=4.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Hi everyone, I have a big problem with this library, let me explain. I have a project written in C# .NET Framework 4.8. This project uses ZeroFormatter to serialize very...

Bumps [Google.Protobuf](https://github.com/protocolbuffers/protobuf) from 3.2.0 to 3.15.0. Release notes Sourced from Google.Protobuf's releases. Protocol Buffers v3.15.0 Protocol Compiler Optional fields for proto3 are enabled by default, and no longer require the...

dependencies

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](https://github.com/neuecc/ZeroFormatter/blob/4274946b1b595b1c8bd395f7b368bbb674ec8029/src/ZeroFormatter.Analyzer/ZeroFormatterAnalyzer.cs#L285). However,...

with this type: ``` [] type SourceCandle = { [] t: DateTime // time [] h: double // high [] l: double // low [] m: double // midpoint []...

Simple enough: ` MasterMessageModel masterMessage = ZeroFormatter.ZeroFormatterSerializer.Deserialize(trssFrame.ToByteArray());` My Model ` [ZeroFormattable] public class MasterMessageModel : MessageBase { [Index(2)] public virtual Guid PlanKey { get; set; } = Guid.Empty; [Index(3)] public...

I'm trying to migrate from Unity binary serializer on the linux host, as it's described on the quick start guide: I replaced all [Serializable] annotations with [ZeroFormattable], and all fields...

Hi, I'm hitting an exception during Serialize in .NET 5.0 on Windows running the sample code from the intro page on this repo. Any idea? System.BadImageFormatException HResult=0x8007000B Message=Bad IL format....

Type is not supported, occurs invalid error: List`1 InnerException:System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.InvalidOperationException: Type is not supported, occurs invalid error: ProductHomepageModel InnerException:System.InvalidOperationException:...

Hello, Readme at (https://github.com/neuecc/ZeroFormatter#built-in-support-types) says > All primitives, All enums,... Sample Class with attributes ``` Public Class MyCustomType Public Overridable Property Pagesize As SizeF Public Overridable Property ListOfSizeF As List(Of...