force

Results 50 comments of force

Example code: ``` var crc = 0u; using (var f = File.OpenRead("somefile")) { var buffer = new byte[65536]; while (true) { var count = f.Read(buffer, 0, buffer.Length); if (count ==...

@PeterCodar I do not know... Differences: * Larger buffer * Return value is string * Support for `IProgress` interface. But with this interface - last progress does not notify, and...

Can you provide short example of code, which causes this error? Also, if it required, write dependent packages with version.

Interesting situation. I'll try to reproduce. Cloning generated objects can be tricky.

Main usage of instance methods is to use as specific implementation of `HashAlgorithm` class. Ordering is only used in HashFinal method, when byte array is needed. If you use crc32...

Let task will be opened until ability to set initial value will be implemented.

Sorry for long delay. What is the sense of this PR? It looks like as copy of DeepClonerExtensions class but without static members (except `ShallowClone` but it seems as mistake...

It seems, it is possible. I'll try to add support later (after New Year. Sorry, I have no time now).

A first, library copies fields, not properties. It conception of library. E.g. we have such pseudo code ```cs public int A { get { return Database.Read("A"); } set { Database.Write("A",...

Ok. I did not think that targeting to lower version of framework will all such dependencies, looks strange, because it does not require this packages and newer version of dotnet...