IFluentInterface by: Daniel Cazzulino
  • 13 total downloads
  • Latest version: 2.1.0
  • fluent API
The core interface to implement fluent APIs that hide the default System.Object members.
IKVM by: Jeroen Frijters
  • 451 total downloads
  • Latest version: 8.1.5717
  • IKVM.NET, Java, .NET
IKVM.NET is an implementation of Java for Mono and the Microsoft .NET Framework.
IKVM-WithExes by: Jeroen Frijters
  • 65 total downloads
  • Latest version: 7.3.4830.1
  • IKVM.NET Java .NET
IKVM.NET is an implementation of Java for Mono and the Microsoft .NET Framework. I've included the IKVM Exes.
IKVM.Image by: Jeroen Frijters, Windward Studios, Jerome Haltom, Shad Storhaug
  • 1.759k total downloads
  • Latest version: 8.11.0-pre.2
IKVM Runtime Image
IKVM.MSBuild.Tools.runtime.linux-arm by: Jeroen Frijters, Jerome Haltom
  • 3.18k total downloads
  • Latest version: 8.16.1
IKVM MSBuild Tools
IKVM.MSBuild.Tools.runtime.linux-arm64 by: Jeroen Frijters, Jerome Haltom
  • 2.771k total downloads
  • Latest version: 8.16.1
IKVM MSBuild Tools
IKVM.MSBuild.Tools.runtime.linux-x64 by: Jeroen Frijters, Jerome Haltom
  • 3.026k total downloads
  • Latest version: 8.16.1
IKVM MSBuild Tools
IKVM.MSBuild.Tools.runtime.osx-arm64 by: Jeroen Frijters, Jerome Haltom
  • 1.77k total downloads
  • Latest version: 8.16.1
IKVM MSBuild Tools
IKVM.MSBuild.Tools.runtime.osx-x64 by: Jeroen Frijters, Jerome Haltom
  • 2.057k total downloads
  • Latest version: 8.16.1
IKVM MSBuild Tools
IKVM.MSBuild.Tools.runtime.win-arm64 by: Jeroen Frijters, Jerome Haltom
  • 1.592k total downloads
  • Latest version: 8.16.1
IKVM MSBuild Tools
IKVM.MSBuild.Tools.runtime.win-x64 by: Jeroen Frijters, Jerome Haltom
  • 1.769k total downloads
  • Latest version: 8.16.1
IKVM MSBuild Tools
IKVM.MSBuild.Tools.runtime.win7-x64 by: Jeroen Frijters, Windward Studios, Jerome Haltom, Shad Storhaug
  • 939 total downloads
  • Latest version: 8.6.4
IKVM MSBuild Tools
ImGui.NET by: Eric Mellino
  • 298 total downloads
  • Latest version: 0.4.7
  • ImGui ImGui.NET Immediate Mode GUI
A .NET wrapper for the dear ImGui library.
IPAddressRange by: J.Sakamoto
  • 218 total downloads
  • Latest version: 6.3.0
  • IPAddress
This library allows you to parse range of IP address string such as "192.168.0.0/24" and "192.168.0.0/255.255.255.0" and "192.168.0.0-192.168.0.255", and can contains check. This library supports both IPv4 and IPv6.
IronSnappy by: Ivan Gavryliuk (@aloneguid)
  • 214 total downloads
  • Latest version: 1.3.1
  • google snappy compression dotnet c#
This is a native .NET port of Google Snappy compression/decompression library. The only implementation that is stable, fast, up to date with latest Snappy improvements, and most importantly does not depend on native Snappy binaries. Works everywhere .NET Core runs.
Irony by: Roman Ivantsov
  • 139 total downloads
  • Latest version: 0.9.1
  • irony ast grammar bnf
Irony is a development kit for implementing languages on .NET platform. In Irony the target language grammar is coded directly in c# using operator overloading to express grammar constructs. Irony's scanner and parser modules use the grammar encoded as c# class to control the parsing process.
IsExternalInit by: Manuel Römer
  • 116 total downloads
  • Latest version: 1.0.3
  • source compiletime polyfill IsExternalInit init record
A source code only package which allows you to use C# 9's init and record features in older target frameworks like .NET Standard 2.0 or the "old" .NET Framework by providing a polyfill for the IsExternalInit class. This package does not contain any compiled binaries, but instead adds the IsExternalInit class as C# source code to your project. Because this code is compiled together with the rest of your code, the built binaries will not have a dependency on this package, meaning that you can perfectly use it for both libraries and applications. The C# code is only included if you are targeting a framework version which does not support the IsExternalInit class. For example, if you create a library which multi-targets .NET Standard 2.0 and .NET 5.0, the IsExternalInit class is not provided in the .NET 5.0 compilation, because .NET 5.0 already provides support for the class by default. Please see https://github.com/manuelroemer/IsExternalInit for additional information on how to use this package.
Isopoh.Cryptography.Argon2 by: Michael Heyman
  • 535 total downloads
  • Latest version: 1.1.8
  • argon2 hash password crypto cryptography
Argon2 Password Hasher written in C#. Uses Isopoh.Cryptography.Blake2 for hashing and Isopoh.Cryptography.SecureArray to protect sensitive data.
Isopoh.Cryptography.Blake2b by: Michael Heyman
  • 422 total downloads
  • Latest version: 1.1.8
  • blake2 blake2b hash crypto cryptography
Blake2 hash for sensitive data. Uses Isopoh.Cryptography.SecureArray to assure sensitive data gets wiped from RAM and, if the operating system allows, never gets written to disk.
Isopoh.Cryptography.SecureArray by: Michael Heyman
  • 447 total downloads
  • Latest version: 1.1.8
  • sensitive array
A managed class that can hold an array in RAM and zero it on disposal. The code has the capability to throw if it cannot lock the array in RAM or gracefully degrade to merely pinning the memory to prevent the CLR from moving it and risking exposure to other part of the executable.