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
Reported by theajp01, Aug 27, 2012 What steps will reproduce the problem?
I don't know if it's supposed to work but I though it'd mention it.
public interface ITest { List GetThings (Guid test) where T: Thing; }
test.GetThings(Guid.Empty);
What is the expected output? What do you see instead?
I'd expect test to be of Type ITest.
Instead of that I Get a MissingMemberException.
What version of the product are you using? On what operating system?
Last version
Please provide any additional information below.
I love your work on ImpromptuInterface an awsome tool :)
Oct 16, 2012 comment remilavoie Your OtherThing class needs to have the List GetThings(Guid test) function in order to act like an ITest.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reported by theajp01, Aug 27, 2012
What steps will reproduce the problem?
I don't know if it's supposed to work but I though it'd mention it.
public class Thing {}
public interface ITest
{
List GetThings (Guid test) where T: Thing;
}
public class OtherThing : DynamicObject
{
}
dynamic ot = new OtherThing();
ITest test = Impromptu.ActLike();
test.GetThings(Guid.Empty);
What is the expected output? What do you see instead?
I'd expect test to be of Type ITest.
Instead of that I Get a MissingMemberException.
What version of the product are you using? On what operating system?
Last version
Please provide any additional information below.
I love your work on ImpromptuInterface an awsome tool :)
Oct 16, 2012 comment remilavoie
Your OtherThing class needs to have the
List GetThings(Guid test)
function in order to act like an ITest.
The text was updated successfully, but these errors were encountered: