force
force
Strong naming is idea introduced by Microsoft with first version of .NET framework. It consisted in signing assembly (dll or exe) with key (this key can be simply generated in...
It's impossible with this library. There are a lot of CRC algorithms and library implements two most popular. I do not see anything special with this algorithm to implement it...
CRC32A used in BZip2, it has same polynom, but without bit reversing. Current implementation is optimized for calculation with reversed bits, so, every part of code should be rewrited for...
It seems, Windows.Forms has a lot of internal dependencies and every deep clone (it a *deep* clone) tries to clone all related objects. Library trying to exclude some handles and...
Sorry, no. I have no time now to investigate problem. When I'll find any time to develop, I'll check this situation
There is no public api to do this. But if you want to override current implementation, you can see to _DeepClonerSafeTypes_ class, there are two corresponding methods: * _CanNotCopyType_ -...
It seems, there are no good ability to do that. Current implementation do object cloning recursively but each object is independent and use same code for cloning. You can look...
Thanks. It is interesting issue. It is bad idea to store objects without `GetHashCode` implementation due undefined behavior for such operations, but it possible, so, some solution should be provided...
No. Sorry.
This is complex issue, related to missing `GetHashCode` implementation for object. Without implementation — object reference is used. So, after cloning `clonedObject` has another reference and `GetHashCode` for it returns...