i want to input public int a=004DF73C;
but it is showing an error of ';' expected (CS1002)
You need to add 0x at the front to signify it is a hex format.
0x
public int a = 0x4DF73C;
Copyright © 2021 Jogjafile Inc.
You need to add
0xat the front to signify it is a hex format.public int a = 0x4DF73C;