update readme
This commit is contained in:
@@ -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));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user