本文介绍了如果我可以使用两个或更多源文件编写一个类?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

因为我的代码有4000行。我想写几个源文件。

但我发现不能写同名的两个文件。例如:

Because my code has 4000 lines. I want to write in several source files.
but I found can not write two file in same name.For example:

Inversion.cs //the first file
partial class forward
{ ... }
Inversion.cs //the second file
partial class forward
{ ... }



我该怎么办?


How can I do?

推荐答案

1.Inversion.cs
2.Inversion.cs
...


<Compile Include="Inversion.cs" />
<Compile Include="Inversion.part2.cs">
  <DependentUpon>Inversion.cs</DependentUpon>
</Compile>



这篇关于如果我可以使用两个或更多源文件编写一个类?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 04:13