This package provides the shared types FixedArray#<T>
to interop between .NET and C/C++.
This package is part of the XenoAtom.Interop project.
Example of using this library in C#:
using XenoAtom.Interop;
// Create a fixed array of 10 integers
var array = new FixedArray10<int>();
array[0] = 42;
array[1] = 43;
// ...
This software is released under the BSD-2-Clause license.
Alexandre Mutel aka xoofx.