74 |
public ResultItemState(string address, SearchDataTypes bitsize, bool IsUnsigned, IAcceptsProcessAndConfig pconfig) |
public ResultItemState(string address, SearchDataTypes bitsize, bool IsUnsigned, IAcceptsProcessAndConfig pconfig) |
75 |
: this(AVPIconKeys.NOTFROZEN, address, "", false.ToString(), bitsize, IsUnsigned, pconfig) |
: this(AVPIconKeys.NOTFROZEN, address, "", false.ToString(), bitsize, IsUnsigned, pconfig) |
76 |
{ |
{ |
77 |
int Address = 0; |
ulong Address = 0; |
78 |
Address = Convert.ToInt32(this.Address, 16); |
Address = Convert.ToUInt64(this.Address, 16); |
79 |
int bytesReadSize; |
ulong bytesReadSize; |
80 |
uint bytesToRead = 0; |
ulong bytesToRead = 0; |
81 |
switch (bitsize) |
switch (bitsize) |
82 |
{ |
{ |
83 |
case SearchDataTypes._8bits: |
case SearchDataTypes._8bits: |