update readme

This commit is contained in:
Stef Heyenrath
2021-08-03 06:01:40 +00:00
parent 5382e9a6b9
commit 8eb0733d6f
3 changed files with 90 additions and 69 deletions
@@ -45,6 +45,11 @@ namespace ProxyInterfaceConsumer
return s + @string;
}
public string HelloWorld(string name)
{
return $"Hello {name} !";
}
public void AddWithParams(params string[] values)
{
}
@@ -27,6 +27,7 @@ namespace ProxyInterfaceConsumer
IPerson p = new PersonProxy(new Person());
p.Name = "test";
p.HelloWorld("stef");
Console.WriteLine("DefaultValue " + p.DefaultValue());
Console.WriteLine("DefaultValue " + p.DefaultValue(42));