Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/PersonT.cs
T
2022-02-04 11:33:26 +01:00

17 lines
324 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;
}
public PersonT<T> Call2(int x, PersonT<T> pt)
{
return new PersonT<T>();
}
}
}