31 lines
606 B
C#
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();
|
|
//}
|
|
} |