consulo-csharp icon indicating copy to clipboard operation
consulo-csharp copied to clipboard

cant resolve operators

Open yaroj opened this issue 10 months ago • 2 comments

		double current = 0;
		current += 100000;
		current *=0.9;
		long testLong = 1234;
		testLong += 420;
		testLong /= 13;
		testLong++;
		Console.WriteLine(current);
		Console.WriteLine(testLong);
		int t = 13;
		t++;
		t+=406;
		Console.WriteLine(t);

Image

consulo cant resolve many different operators

yaroj avatar May 14 '25 06:05 yaroj