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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…