NativeInterop 2.4.1
See the version list below for details.
dotnet add package NativeInterop --version 2.4.1
NuGet\Install-Package NativeInterop -Version 2.4.1
<PackageReference Include="NativeInterop" Version="2.4.1" />
paket add NativeInterop --version 2.4.1
#r "nuget: NativeInterop, 2.4.1"
// Install NativeInterop as a Cake Addin #addin nuget:?package=NativeInterop&version=2.4.1 // Install NativeInterop as a Cake Tool #tool nuget:?package=NativeInterop&version=2.4.1
Extends the NativeInterop.NativePtr module from FSharp.Core with 64-bit capabilities, adds more features and and exposes the functionality in an OOP-friendly manner as NativePtr<T> (raw pointer operations on pointers of type T* where T is an unmanaged type), extension methods to System.IntPtr and NativeArray64<T> (a generic native 64-bit array of items of unmanaged type T) to C# and VB (and F#, of course). The included System.IO.Stream extension methods as well as the Buffer module enable easy and efficient handling of structured binary data (convert array types, convert structs, memcpy...).
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on NativeInterop:
Package | Downloads |
---|---|
NativeInterop.SIMD
Provides SIMD-accelerated operations (create, init, map, ...) on native arrays provided by the NativeInterop package Note for F# Users: The System.Numerics.Vectors package doesn't work out of the box for F# projects. Make sure to MANUALLY ADD <HintPath>..\packages\System.Numerics.Vectors.4.1.1\lib\net46\System.Numerics.Vectors.dll</HintPath> to the reference in your fsproj file! |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.2.0 | 2,142 | 2/24/2017 |
3.1.0 | 1,208 | 11/14/2016 |
3.0.2 | 968 | 11/7/2016 |
3.0.0 | 1,069 | 11/4/2016 |
2.4.3 | 1,107 | 4/17/2016 |
2.4.2 | 980 | 4/15/2016 |
2.4.1 | 1,009 | 3/5/2016 |
2.4.0 | 1,284 | 6/3/2015 |
2.3.5 | 1,205 | 4/28/2015 |
2.3.2 | 1,184 | 8/20/2014 |
2.3.1 | 1,098 | 7/10/2014 |
2.3.0 | 1,090 | 7/9/2014 |
2.2.1 | 1,102 | 7/2/2014 |
2.2.0 | 1,086 | 7/2/2014 |
2.1.0 | 1,133 | 6/20/2014 |
2.0.0 | 1,140 | 5/23/2014 |
1.4.1 | 1,156 | 5/18/2014 |
1.4.0 | 1,143 | 5/18/2014 |
1.2.1 | 1,386 | 4/28/2014 |
1.1.1 | 1,271 | 4/12/2014 |
1.1.0 | 1,302 | 4/12/2014 |
1.0.0 | 1,249 | 4/11/2014 |
- fixed issue #14: ReinterpretCast can now be used from F# with reference types
- Refined IDisposable implementation for ReinterpretCast