Click here to Skip to main content
15,896,606 members
Please Sign up or sign in to vote.
1.00/5 (4 votes)
See more:
how to write same code in c#??

typedef unsigned char u8;
u8 **ScanStageStrPtr

What I have tried:

I have to convert like

byte[,] ScanStageStrPtr

byte[,] ScanStageStr = new byte[256, 256];
Posted
Updated 5-Jan-17 2:37am

1 solution

C#
byte ScanStageStrPtr[,] = new byte [256,256];

Further reading aobut multidimensional arrays.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900