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
Given interface
public interface IBar<T1, T2> { void Method(T1 t1, T2 t2); }
and implementation:
public class Foo<T1, T2> : IBar<T1, T2> { public void Method(T1 t1, T2 t2) { throw new NotImplementedException(); } }
We should be returning this implementation. It isn't because we exclude it if all types are still open.
The text was updated successfully, but these errors were encountered:
Resolves issue #1
8c856ec
No branches or pull requests
Given interface
and implementation:
We should be returning this implementation. It isn't because we exclude it if all types are still open.
The text was updated successfully, but these errors were encountered: