我正在CodeIt.Right
创建自定义规则。我试图使用RuleUtilities.GetMethodStatements方法获取语句列表。此方法返回StatementCollection对象,但visualstudio 2010和2013无法找到此类。应该使用哪个名称空间或类来存储语句集合?
答案 0 :(得分:1)
您需要在项目中向SubMain.CodeItRight.CodeObjectModel.dll添加引用(您将在%PROGRAMFILES%\ SubMain \ CodeIt.Right \文件夹中找到它)以使用StatementCollection。
有关示例,请参阅CodeIt.Right - Creating Custom Rules和CodeIt.Right - Extending Existing Rules
谢谢!