摘要:
<?xml version="1.0" encoding="utf-8" ?><configuration> <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandle 阅读全文
摘要:
var cityList = cList.Skip((currentpage - 1) * perPageCount).Take(perPageCount).ToList(); 阅读全文
摘要:
page = records.totalCount / pageSize; page += (records.totalCount % pageSize) > 0 ? 1 : 0; for (int i = 1; i <= page; i++) { } 阅读全文
摘要:
在实例化Thread的实例,需要提供一个委托,在实例化这个委托时所用到的参数是线程将来启动时要运行的方法。在.net中提供了两种启动线程的方式,一种是不带参数的启动方式,另一种是带参数的启动的方式。 不带参数的启动方式 带参数的启动方法 如果要在实例化线程时要带一些参数,就不能用ThreadStar 阅读全文
摘要:
a项目属性 生成事件 后期生成事件命令行 xcopy /r /y $(TargetDir)*.* $(SolutionDir)ScreenWebPage_Tool\bin\Debug\*.* 阅读全文
摘要:
原始 URL 定义为 URL 中域信息之后的部分。在 URL 字符串 http://www.contoso.com/articles/recent.aspx 中,原始 URL 为/articles/recent.aspx。 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text; namespace JiaWel.Utilities{ public static class ExceptionHelper { //日志记录 private stat 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using Newtonsoft.Json;using System.IO; namespace JiaWel.Utilities.Json{ public class J 阅读全文
摘要:
C#中AppDomain.CurrentDomain.BaseDirectory与Application.StartupPath的区别 // 获取程序的基目录。System.AppDomain.CurrentDomain.BaseDirectory // 获取模块的完整路径。System.Diagn 阅读全文
摘要:
System.Guid.NewGuid().ToString()全球唯一标识符 (GUID) 是一个字母数字标识符,用于指示产品的唯一性安装。在许多流行软件应用程序(例如 Web 浏览器和媒体播放器)中,都使用 GUID。 GUID 的格式为“xxxxxxxx-xxxx-xxxx-xxxx-xxxx 阅读全文