Hiro icon indicating copy to clipboard operation
Hiro copied to clipboard

when publishing a delegate or class with missing dependencies, hiro will throw a ConstructorNotFound exception

Open juancastrodlc opened this issue 13 years ago • 3 comments

in the sample assembly add a simple delegate

public delegate void Procedure();

Hiro attempts to find a constructor and will fail

also when adding a class to the sample assembly

public interface ISomeInterface{}

public SomeClass:ISomeInterface { public SomeClass(Type missingDependency){} }

will throw the same error.

Is this by design or is it a Bug?

If it is I'm working on the patch.

Greetings.

juancastrodlc avatar May 24 '11 22:05 juancastrodlc