Hi I'm trying to convert a C++ code to a C#, I have searched for a few solutions on the internet, but I can't seem to get any of the results I want. Can anyone help me? Thanks.
The following code is a C++ code.
typedef unsigned char uint8; typedef int sint32; typedef struct BY_BITMAP { sint32 biWidth; sint32 biHeight; sint32 biBitCount; sint32 bfSize; sint32 BytesPerLine; uint8 **ScanLine; uint8 *buffer; }BY_BITMAP;