Skip to content

Out parameters are not properly decorated #104

@sanjuroo

Description

@sanjuroo

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.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions