I’m giving JustCode another go and it doesn’t seem to like some .Net 4.0 features (which btw compile ok in VisualStudio):
You can see that the JustCode parser didn’t like the Default Parameters, in both method definition:
and in method invocation:
It also doesn’t like the dynamic keyword
Fixing issues
Since there are not many of these, lets see if we can fix them all, and get a clean compilation.
One way to deal with method invocation problems like:
Is to do the call with the optional parameters:
After a while, I was able to fix all issues, except the dynamic ones (which I set to ignore)
For reference here are the code changes made during this post