#region 获取 本周、本月、本季度、本年 的开始时间或结束时间 /// /// 获取结束时间 /// /// Week、Month、Season、Year /// /// ...
一:描述,将读取的文档标题添加到下拉框中二:代码 #region 方法:得到Word文档标题的内容 public static List GetTitles(int j,int m)//标题深度,标题字符个数选取标准 { List title = ...
分类:
其他好文 时间:
2015-02-04 10:45:19
阅读次数:
105
一:基础定义 #region 定义线尾、线头为箭头、字体和笔刷 Pen p = new Pen(Color.Black, 1);//定义画笔 蓝色,宽度为1(坐标显示颜色) p.EndCap = LineCap.ArrowAnchor;//...
分类:
其他好文 时间:
2015-02-04 09:21:32
阅读次数:
196
usingSystem;usingSystem.Collections;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Linq;namespaceSystem.Web.Mvc{#region通用函数///...
#region 练习题 1.4 (1) ///*求一个N阶方阵所有原素的和。(改进:二维数组的大小可以自己输入)*/ //Console.WriteLine("请输入i和j的值:"); //Console.Write("i的值:");...
分类:
其他好文 时间:
2015-01-30 17:14:04
阅读次数:
138
public class DelegateCommand : ICommand { Func canExecute; Action executeAction; bool canExecuteCache; #region 构造函数 ...
分类:
其他好文 时间:
2015-01-30 01:22:55
阅读次数:
93
让大家看一下改版前的代码和我改版之后的代码。你就明白了。。
背景:有学生表,也有一张班级表。通过在学生表中加入外键班级ID。现在我需要查询到学生表的信息 并查询到相关的班级信息 同时保存在学生的数据契约中。
改版前:
代码块一:
#region (考试接口)查询所有的在校学生+List QueryAllStudent()
///
/// (考试接...
分类:
其他好文 时间:
2015-01-29 22:35:26
阅读次数:
224
C#中对象,字符串,dataTable、DataReader、DataSet,对象集合转换成Json字符串方法。public class ConvertJson { #region 私有方法 /// /// 过滤特殊字符 /// /// 字符串 /// json字符串 privat...
1 public class LogCommon 2 { 3 #region 全局变量 4 /// 5 /// 日志配置文件路径 6 /// 7 private static string C...
分类:
其他好文 时间:
2015-01-29 17:19:19
阅读次数:
171
#region Ping 返回true则代表可以连接成功 public bool Ping(string remoteHost) { bool Flag = false; Process proc = new P...