Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/PersonT.cs
T
Stef Heyenrath 390093d007 Add support for generics (#20)
* wip

* .

* method

* TT

* TT

* .

* .

* mp
2021-08-01 10:34:25 +02:00

12 lines
214 B
C#

namespace ProxyInterfaceConsumer
{
public class PersonT<T> where T: struct
{
public T TVal { get; set; }
public T Call(int x, T t)
{
return default;
}
}
}