This repository was archived by the owner on Jul 26, 2023. It is now read-only.

Description
Given a method with such a parameter:
[Friendly(FriendlyFlags.Out | FriendlyFlags.Array)] char* lpString,
We should produce an overload with parameter type Span<char>.
Also if the direction is only In:
[Friendly(FriendlyFlags.In | FriendlyFlags.Array)] char* lpString,
We should produce an overload with parameter type ReadOnlySpan<char>.