16 lines
337 B
C#
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));
|
|
}
|
|
}
|
|
}
|