Does anyone know what a variable highlighted in red means?
Thanks.
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.
It means its value was changed since the last time the program was stopped in the debugger. For example, if you write the code:
int a = 10; a = 20;, and step over it with F10, you’ll notice the variable ‘a’ turns red when you step over the second line.