摘要:
调用代码,通过传入exe的名称来调用。 /// <summary> /// Get the check result by applaction name. /// </summary> /// <param name="argName"></param> /// <returns></returns> public static string GetResult(string argName) { Assembly ass = Assembly.Load(argName); ... 阅读全文
摘要:
有时牵涉到大量分割字符串时,直接使用string.split方法性能上可能会并不理想,于是自己特意写了类似的方法来换。 private List<string> StringSplit(string argValue) { List<string> valueList = new List<string>(); int index = 0; int nStart = 0; string strTmp = string.Empty; index = argValue.Ind... 阅读全文