Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 specflow 中为 Feature.cs 文件创建一个构造函数。但是当我尝试调试时行为异常。有没有办法为此 feature.cs 文件创建构造函数?或者我们不能编辑这个文件?
编辑此文件没有意义,因为每次修改 xxx.feature 时都会覆盖它。
但是 xxx.feature.cs 中的类被声明为部分的,因此您可以使用类似的部分类声明将 xxx.anythingYouLike.cs 添加到您的解决方案中,例如public partial class xxxFeature并在那里添加您喜欢的任何代码。
public partial class xxxFeature
我并不是说这是一种好的做法,但它可能很有用。