Add support for reserved keywords like @object and @string (#18)

This commit is contained in:
Stef Heyenrath
2021-07-31 10:21:12 +02:00
committed by GitHub
parent c1359511d6
commit 541477b545
8 changed files with 188 additions and 165 deletions
@@ -8,6 +8,8 @@ namespace ProxyInterfaceConsumer
private int PrivateId { get; }
public int Id { get; }
public object @object { get; set; }
public long? NullableLong { get; }
public string Name { get; set; }
@@ -25,9 +27,9 @@ namespace ProxyInterfaceConsumer
public IMyInterface MyInterface { get; set; }
public int Add(string s)
public string Add(string s, string @string)
{
return 600;
return s + @string;
}
public void AddWithParams(params string[] values)