add csharpier

This commit is contained in:
Adam Hathcock
2024-05-21 16:34:46 +01:00
parent 1734d5162a
commit e341772cbc
110 changed files with 1096 additions and 656 deletions
@@ -9,18 +9,12 @@ namespace ProxyInterfaceSourceGeneratorTests.Source
// Operator : implicit
public static implicit operator OperatorTest(string name)
{
return new()
{
Name = name
};
return new() { Name = name };
}
public static implicit operator OperatorTest(int? id)
{
return new()
{
Id = id
};
return new() { Id = id };
}
// Operator : explicit
@@ -43,4 +37,4 @@ namespace ProxyInterfaceSourceGeneratorTests.Source
var s = (string)operatorTest;
}
}
}
}