add MembersToIgnore

This commit is contained in:
Adam Hathcock
2024-05-21 13:03:43 +01:00
parent 894b5d5049
commit 5568a98e0b
15 changed files with 240 additions and 7 deletions
@@ -1,6 +1,8 @@
using ProxyInterfaceGenerator;
namespace ProxyInterfaceConsumer
{
[ProxyInterfaceGenerator.Proxy(typeof(ProxyInterfaceConsumer.Person), ProxyClassAccessibility.Internal))]
[Proxy(typeof(Person), ProxyClassAccessibility.Internal)]
public partial interface IPerson
{
}
@@ -52,7 +52,7 @@ namespace ProxyInterfaceConsumer
b = 1;
}
public int In_Out_Ref2(in Address a, out Address b, ref Address c)
public int In_Out_Ref2(in IAddress a, out Address b, ref IAddress c)
{
b = new Address();
return 404;