Files
ProxyGenerator/src-examples/ProxyInterfaceConsumer/Program.cs
T
Stef Heyenrath 42073eed3d void
2021-07-23 17:35:35 +02:00

17 lines
359 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");
p.Void();
Console.WriteLine(System.Text.Json.JsonSerializer.Serialize(p));
}
}
}