Giter VIP home page Giter VIP logo

binaryencoding's People

Contributors

dependabot-preview[bot] avatar hanabi1224 avatar radioegor146 avatar tabrath avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

binaryencoding's Issues

Migrate CI to Azure Pipelines

Currently we're using Travis, Appveyor and CircleCI, which is making our builds more complex than we want. Azure Pipelines supports all the platforms that we want to support.

The 'Binary.Varint.Read' method has incorrect results when handling values larger than 'int.MaxValue' [BUG]

The Binary.Varint.Read method has incorrect results when handling values larger than int.MaxValue

Sample code

ulong src = 12345678910;
byte[] buf = Binary.Varint.GetBytes(src);
Binary.Varint.Read(buf, 0, out ulong val);

Console.WriteLine(val); // Output: 18446744073170328638
Console.WriteLine(src == val); // Output: False

The error is in the Binary.Varint.cs file at lines 184 and 235

value |= (ulong)(buffer[i] << s);

value |= (ulong)(b << s);

It should be changed to the following code

// value |= (ulong)(buffer[i] << s);
value |= (ulong)buffer[i] << s;

Use Span<T>

The new Span type could provide some optimizations for exactly this library.

Warning MSB3270

I'm installed your library from NuGet.
Version is 1.3.0
image

This warning message was shown when i choose platform Any CPU.
image
image

when i choose platform x64, message was disappear.

could you fix this warning message?
i want to use Any CPU. nothing warning.

thanks.

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.