-
-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
If interface has method with 'out' parameters, generated decorator omits out keyword resulting in error that decorator does not implement interface method.
Resulting decorated method should look like:
bool MyMethod(out string something);
public virtual bool MyMethod(out string something)
{
return decoratedInterface.MyMethod(out something);
}
Thanks.
CodingFlow
Metadata
Metadata
Assignees
Labels
No labels