我从github下载了一些示例代码,并看到BookRepository.cs类分组在IBookRepository.cs接口下面。也许这是一个新手问题,但他们是如何做到的?
答案 0 :(得分:1)
他们可能使用了custom generator tool:
这是关于这个主题的另一个blog post。
或他们可能只是在corresponding .csproj
file中将其分组:
<Compile Include="Code\BookRepository.cs">
<DependentUpon>IBookRepository.cs</DependentUpon>
</Compile>
<Compile Include="Code\IBookRepository.cs" />