I'm learning little by little with your help. Thank you always.
i have a question. i know how to convert Decimal To binary ( convert.Tostring(2, 2); ) but result is 0010.
i want these result 0000 0010.
how can i convert this way??
static byte[] gbuff = new byte[1000];
...
string[] rxData = new string[31]
.....
for(int x=0; x<31; x++)
{
rxData[x] = Convert.Tostring(gbuff[x], 2);
}
I'm always grateful to everyone who helps me.