如何在Visual Studio中的接口下对实现进行分组?

时间:2011-02-23 22:53:07

标签: visual-studio asp.net-mvc-3

我从github下载了一些示例代码,并看到BookRepository.cs类分组在IBookRepository.cs接口下面。也许这是一个新手问题,但他们是如何做到的?

A snapshot from visual studio 2010 of an implementation grouped beneath an interface in the solution explorer.

1 个答案:

答案 0 :(得分:1)

他们可能使用了custom generator tool

enter image description here

这是关于这个主题的另一个blog post

他们可能只是在corresponding .csproj file中将其分组:

<Compile Include="Code\BookRepository.cs">
  <DependentUpon>IBookRepository.cs</DependentUpon>
</Compile>
<Compile Include="Code\IBookRepository.cs" />