We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For the lines of code below, the error appears at "if". var obj = null; if (!obj ) break;
var obj = null; if (!obj ) break;
The error message is: ! (p0:System.Boolean) cannot be applied to (p0:System.Boolean)
! (p0:System.Boolean) cannot be applied to (p0:System.Boolean)
The text was updated successfully, but these errors were encountered:
Hi. Thanks. Its regression
simple code
using UnityEngine; public class RegressionTest { public static void Main() { GameObject gameObject = null; if(!gameObject) { return; } } }
Sorry, something went wrong.
consulo/consulo-csharp@af045f2
Fixed. After one hour you need update C# plugin
No branches or pull requests
For the lines of code below, the error appears at "if".
var obj = null;
if (!obj ) break;
The error message is:
! (p0:System.Boolean) cannot be applied
to (p0:System.Boolean)
The text was updated successfully, but these errors were encountered: