I am making application in c#.Here i want to convert a byte array containing hex values to decimal values.Suppose i have one byte array as
array[0]=0X4E; ar
hex and decimal are just different ways to represent the same data you want something like
int myInt = array[0] | (array[1] << 8) | (array[2] << 16) | (array[3] <<24)