Git Product home page Git Product logo

hhblaze / biser Goto Github PK

View Code? Open in Web Editor NEW
40.0 5.0 2.0 8.16 MB

Biser is a cross-platform Binary and JSON Serializer for .NET / dotnet / core / standard / CoreRT / Mono WASM / C#

License: BSD 2-Clause "Simplified" License

C# 93.89% Batchfile 0.34% HTML 4.18% JavaScript 1.60%
protobuf alternative dbreeze serializer binary serialization netcore netstandard net framework protobuf-net raft encoder decoder javascript react reactjs vue cross-platform json

biser's Issues

Initialization template for the object decoding static function has changed in v.1.7

Binary Biser decoding became faster starting from v1.7, but for that objects decoding initialization template must be changed - compiler will show errors in those parts.

Example:

 public static T4 BiserDecode(byte[] enc = null, Biser.Decoder extDecoder = null) 
        {
            Biser.Decoder decoder = null;
            if (extDecoder == null)
            {
                if (enc == null || enc.Length == 0)
                    return null;
                decoder = new Biser.Decoder(enc);
                if (decoder.CheckNull())
                    return null;
            }
            else
            {
/************************ MUST BE LIKE THIS **************************/
//STARTING FROM v1.7, init template has changed
                  if (extDecoder.CheckNull())
                    return null;
                else
                    decoder = extDecoder;
/************************************************************************/
            }

            T4m = new T4();  

            m.Data = decoder.GetByteArray();
            m.Id = decoder.GetULong();
            
            return m;
        }

Handle Polymorphism in list?

It seems that I'm unable to have a list such as List that contains instances of a child class in it.

For example:

List<ParentClass>() myList;
ChildClass foo = new ChildClass();
myList.Add(foo);

Is it possible to serialize/deserialzie like this?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.