Valery Semenchuk
Valery Semenchuk
for example - in preprocessor code i will write **}** - that will break original code. Trying resolve inside disabled block for not out of poll(for example preprocessor can handle...
``` csharp public class A { public void #if A test() #else maybe() #endif { // some code } public void tryCall() { test(); // error - if no A,...
And you can create local variables with same name - but different type (i saw some code with that). Idk how to handle it
foreach variable not global for each statements bug
Hi Fix for this issue delayed - due i can't find simple way for fix it. It's not easy to fix. Sorry
As i saw - no reports about them.
Hi. Will test. But my intuition say - i can't reproduce that. Need example Thanks
It works :( 

Simple example: ``` csharp public interface A { object test(); } public class B : A { private object A.test() { return null; } public T test() { return default(T);...