As described in the title, I am confused by such initialization as “&h3&”. What does this mean? Thank you very much.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This declares a long variable with the value
3. Here’s a quick break down of the syntax&h: In VB this is the prefix which indicates a hexadecimal number. It’s the equivalent of0xin C / C++ / C#3: The number 3 which is still just 3 when evaluated as a hexadecimal number&: Specifies it should be a long vs normal integral value