Files
ProxyGenerator/tests/ProxyInterfaceSourceGeneratorTests/Source/Foo2.cs
T
2024-05-21 14:14:54 +01:00

36 lines
699 B
C#

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