我的文件中有以下文本
Index: D:/QATV2Demo/Main.msbuild
===================================================================
--- D:/QATV2Demo/Main.msbuild (revision 12414)
+++ D:/QATV2Demo/Main.msbuild (revision 12416)
--- D:/QATV2Demo/Main.msbuild (revision 12414)
+++ D:/QATV2Demo/Main.msbuild (revision 12416)
@@ -39,7 +39,7 @@
AssemblyFile="$(ToolsBinPath)\MSBuild.Community.Tasks.dll" />
- <FxCop_CriticalErrors>10</FxCop_CriticalErrors>
+ <FxCop_CriticalErrors>0</FxCop_CriticalErrors>
<FxCop_Errors>0</FxCop_Errors>
<FxCop_CriticalWarnings>0</FxCop_CriticalWarnings>
<FxCop_Warnings>0</FxCop_Warnings>
Index: D:/QATV2Demo/QATV2Demo/QATConstant.cs
===================================================================
--- D:/QATV2Demo/QATV2Demo/QATConstant.cs (revision 12414)
+++ D:/QATV2Demo/QATV2Demo/QATConstant.cs (revision 12416)
@@ -9,7 +9,7 @@
{
public static readonly string PAGE_DATA_DROP_DOWN_MODE = "D";
public static readonly string PAGE_DATA_GRID_MODE = "G";
- public static readonly string REPORT = "Report";
+ public static readonly string REPORT = "Report1";
public static readonly string ITEM_COUNT = "ItemCount";
}
}
现在我已经编写了自己的代码,它给出了结果,即以 - 和 + 开头的行,显示文件的内容差异。
这是我的代码
int counter = 0;
string line;
string filename = args[0].ToString();
using (System.IO.StreamReader file = new StreamReader(filename))
{
while ((line = file.ReadLine()) != null)
{
if (line.StartsWith("- ")||line.StartsWith("+ "))
{
Console.WriteLine(line.Trim('-',' ','+'));
}
counter++;
}
file.Close();
}
// Suspend the screen.
Console.WriteLine(counter);
这是我使用的 ruff 代码。
请告诉我在这种情况下哪个 dot net 类最适合我
提前致谢。