How do I specify a fixed-size buffer in C++/CLI?

c++-cli

Solution

One of the C++/CLI developer blogs had code for a template solution to this, I'll try to find a link.

Ahh, found it. It's called `inline_array`.

Problem

In C#, I can specify a fixed sized buffer using the `fixed` keyword, like so: ``` public unsafe struct StructWithFixedBuffer { public fixed char FixedBuffer[128]; } ``` how would I express the same thing in C++/CLI?

Original source