Vanmail1900

- Total activity 3
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
-
-
Vanmail1900 created a post, No warning/message about possible assignment in conditional expression CS0665
This:bool b1 =true; bool b2 =true; if (b1=true) {} Gives warning about Assignment in conditional expressionThis does not:bool b1 =true;bool b2 =true;if ((b1=true) && (b2=true)) {}Why?JetBrains R...