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
namespace issues.eppz { /// <summary> /// eppz.eppz-code - 1.2.41 - 2017.07.20 /// Argument coloring is broken when multiple /// arguments with an array type are involved. /// </summary> public class example { public example() { // Local var declaration seems fine. object[] a; object[] b, c, d; } public void foo(object[] arg1) { return; // Just works. } public void foo(object[] arg1, object[] arg2) { return; // Broken. } public void foo(object[] arg1, object[] arg2, object[] arg3) { return; // Broken. } public void foo(object[] arg1, int[] arg2, char[] arg3) { return; // Broken. } public void bar(object arg1) { return; // Just works. } public void bar(object arg1, object arg2) { return; // Just works. } public void bar(object arg1, object arg2, object arg3) { return; // Just works. } public void baz(object arg1, object[] arg2) { return; // Just works. } public void baz(object[] arg1, object arg2) { return; // Just works. } public void baz(object[] arg1, object arg2, object[] arg3) { return; // Broken. } } }
The text was updated successfully, but these errors were encountered:
I have the same problem. Any solution?
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: