How to use ternary operator with System::Boolean? This sample code always returns true:
bool Test(Boolean^ value)
{
return value ? true : false;
}
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.
Answering my own premature question, this code works:
EDIT: better yet (and following Hans’ and Matt’s advice) this code works better:
Or, because Boolean and bool are convertible this is also good code, which relies on automatic conversion that happens elsewhere. Example has very little sense except for showing the ternary operator: