Files
ProxyGenerator/tests/ProxyInterfaceSourceGeneratorTests/Source/Foo.cs
T
2023-01-23 13:11:51 +01:00

31 lines
606 B
C#

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<Foo> DoSomethingAndGetAListOfFoos()
//{
// return new[] { new Foo() }.ToList();
//}
}