有这么一个C++结构体
typedef struct BY_BITMAP
{
sint32 biWidth; //图像宽度
sint32 biHeight; //图像高度
sint32 biBitCount; //颜色深度
sint32 bfSize; //位图缓冲区长度
sint32 BytesPerLine; //一行位图数据所占的字节数
char **ScanLine; //行索引
int *buffer; //图像缓冲区
}BY_BITMAP;
如何封装成C#结构体?
GCT1015
缥缈止盈