VBUnmanaged 1.1.0

dotnet add package VBUnmanaged --version 1.1.0
NuGet\Install-Package VBUnmanaged -Version 1.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="VBUnmanaged" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add VBUnmanaged --version 1.1.0
#r "nuget: VBUnmanaged, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install VBUnmanaged as a Cake Addin
#addin nuget:?package=VBUnmanaged&version=1.1.0

// Install VBUnmanaged as a Cake Tool
#tool nuget:?package=VBUnmanaged&version=1.1.0

Simple wrapper classes and structs for helping with interop under VB.NET. Uses IL code for native and simple structure pointer handling for better performance.

Product Compatible and additional computed target framework versions.
.NET Framework net451 is compatible.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wpa81 is compatible. 
Windows Store netcore451 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 1,356 8/16/2014

1.1.0 - Rewrote Ptr class to include delegate marshaling and better optimization. Memory leaks for strings taken care of.

FuncPtr class removed. Along with the awkward (pointless?) UnPin extension.

Added IntPtr extensions for easy marshaling/pointer dereferencing.

1.0.9 - Changed library to 4.5.1 to take advantage of generic Marshal class methods. Simple structures without arrays and containing pure native types use IL functions for (de)referencing.

1.0.8 - Uses IL functions for pointer operations with native types in Ptr class. PtrToStructure is now used only for complex structs.

1.0.7 - Changed pointer math operators to return IntPtr value instead of dereferencing the pointer. Added UnPin extension method.

1.0.6 - Fixed pointer math operators to take pointer's type size into account. Added a generic Fixed structure for pinning objects.

1.0.5 - Added constructors for FuncPtr class for either pointer or delegate.

1.0.4 - Added ChangePtrSize method for Ptr class allowing you set a new size for pointer with option to reallocate. Changed namespace to VBUnmanged.

1.0.3 - Added Dispose method for Ptr class. Updated test code.

1.0.2 - Allows for arrays to be used in initializing Ptr class. Includes string arrays which subsequently turns the Ptr into an array of IntPtr's with each element pointing to the string.