CosmosOS / IL2CPU

IL2CPU is a compiler for .NET IL code to compile to assembly language for direct booting.
BSD 3-Clause "New" or "Revised" License
282 stars 70 forks source link

Added a work-around for IsClass not being true for EqualityComparer<T>. #78

Closed disks86 closed 5 years ago

disks86 commented 5 years ago

This honestly shouldn't be needed as EqualityComparer is a class and IsClass should return true for a generic anyway. However in my testing IsClass is false and this causes the constructor for dictionary to fail to build.

This update along with the related CosmosOS PR resolve issue #584.