Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/Program.cs
T
Stef Heyenrath 592f5df637 add methods
2021-07-23 17:14:04 +02:00

16 lines
337 B
C#

using System;
namespace SourceGeneratorInterface
{
public class Program
{
public static void Main()
{
PersonProxy p = new PersonProxy(new Person());
p.Name = "test";
p.Add("x");
Console.WriteLine(System.Text.Json.JsonSerializer.Serialize(p));
}
}
}