Valery Semenchuk

Results 168 comments of 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

Hi. Will test. But my intuition say - i can't reproduce that. Need example Thanks

It works :( ![](http://klikr.org/d14c9e704bfbe180e0307b4cf01c.png)

![](http://klikr.org/f0df0ea3fd94f144d6156e6db6e5.png)

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