add methods

This commit is contained in:
Stef Heyenrath
2021-07-23 17:14:04 +02:00
parent ea99971400
commit 592f5df637
5 changed files with 134 additions and 19 deletions
@@ -1,11 +1,15 @@
namespace SourceGeneratorInterface
using System;
namespace SourceGeneratorInterface
{
public class Program
{
public static void Main()
{
IPerson ip = null;
//var i = ip.Id;
PersonProxy p = new PersonProxy(new Person());
p.Name = "test";
p.Add("x");
Console.WriteLine(System.Text.Json.JsonSerializer.Serialize(p));
}
}
}