namespace ProxyInterfaceSourceGeneratorTests.Source; public class Foo { //public Bar DoSomethingAndGetABar() //{ // return new Bar(); //} //public Bar[] DoSomethingAndGetAnArrayOfBars() //{ // return new[] { new Bar() }; //} //public Foo DoSomethingAndGetAFoo() //{ // return new Foo(); //} public Foo[] Foos { get; set; } public Foo[] DoSomethingAndGetAnArrayOfFoos() { return new[] { new Foo() }; } //public List DoSomethingAndGetAListOfFoos() //{ // return new[] { new Foo() }.ToList(); //} }