本文整理汇总了C#中System.TestClass.DoTestClassTest_string方法的典型用法代码示例。如果您正苦于以下问题:C# TestClass.DoTestClassTest_string方法的具体用法?C# TestClass.DoTestClassTest_string怎么用?C# TestClass.DoTestClassTest_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.TestClass
的用法示例。
在下文中一共展示了TestClass.DoTestClassTest_string方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
public static void Main(string[] args)
{
Console.WriteLine(" ================================ ");
ProcessorDispatcher d = new ProcessorDispatcher();
#if BUILTINTESTS
var x = new TestClass();
x.DoTestClassTest_string();
// x.DoTestClassTest<string>();
#endif
List<string> fileList = new List<string>();
if(args.Length > 0)
{
fileList.AddRange(args);
}
else
{
foreach(var fileName in
Directory.GetFiles(Directory.GetCurrentDirectory(), "*.dll")
.Concat(Directory.GetFiles(Directory.GetCurrentDirectory(), "*.exe")))
{
#if false // Rewriter only
if(!fileName.Contains("AOTCompatlyzer"))continue;
#else
#endif
fileList.Add(fileName);
}
}
foreach(var fileName in fileList){
// Blacklist could go here
#if CUSTOM
if(fileName.EndsWith("LionRing.dll")) continue;
#endif
try {
string outFileName = fileName + "-orig-";
while (File.Exists(outFileName)) {
outFileName += "-";
}
d.OnFile(fileName, outFileName);
} catch(Exception ex) {
Console.WriteLine("Exception processing dll " + fileName + ": " + ex);
}
}
}
示例2: Main
public static void Main(string[] args)
{
Console.WriteLine(" ================================ ");
ProcessorDispatcher d = new ProcessorDispatcher();
#if BUILTINTESTS
var x = new TestClass();
x.DoTestClassTest_string();
// x.DoTestClassTest<string>();
#endif
List<string> fileList = new List<string>();
if(args.Length > 0)
{
IEnumerable<string> fileListArgs = args;
if(args[0].StartsWith ("-"))
{
int verb;
if(Int32.TryParse (args[0].Substring(1), out verb))
{
AotCompatlyzer.Verbosity = verb;
fileListArgs = fileListArgs.Skip(1);
}
}
if (fileListArgs.Contains ("--trace")) {
AotCompatlyzer.TraceMode = true;
fileListArgs = fileListArgs.Where(a => a !="--trace");
Console.WriteLine (" --- TRACE MODE --- ");
}
if (fileListArgs.Contains ("--pretend")) {
AotCompatlyzer.PretendMode = true;
fileListArgs = fileListArgs.Where(a => a !="--pretend");
Console.WriteLine (" --- PRETEND MODE --- ");
}
fileList.AddRange(fileListArgs);
}
else
{
foreach(var fileName in
Directory.GetFiles(Directory.GetCurrentDirectory(), "*.dll")
.Concat(Directory.GetFiles(Directory.GetCurrentDirectory(), "*.exe")))
{
#if false // Rewriter only
if(!fileName.Contains("AOTCompatlyzer"))continue;
#else
#endif
fileList.Add(fileName);
}
}
Console.WriteLine("Verbosity: " + AotCompatlyzer.Verbosity);
foreach(var fileName in fileList){
// Blacklist could go here
#if CUSTOM
if(fileName.EndsWith("LionRing.dll")) continue;
#endif
try {
string outFileName = fileName + "-orig-";
while (File.Exists(outFileName)) {
outFileName += "-";
}
d.OnFile(fileName, outFileName);
} catch(Exception ex) {
Console.WriteLine("Exception processing dll " + fileName + ": " + ex);
}
}
}