C#
不知道未来的你多强大
这个作者很懒,什么都没留下…
展开
-
拉姆达表达式自定义字段并调用
IListFileDataInfo> list = ifileManage.Search(searchFile).Where(c => c.FileTypeID == 1 || c.FileTypeID == 2).OrderByDescending(c => new { ProjectName = c.FileTypeID == 1 ? (ProjectUtils.GetProj原创 2013-09-11 16:47:32 · 1613 阅读 · 0 评论 -
c# Json List<T> DataTable 数据相互转换
转载:c# Json List DataTable 数据相互转换最近在项目中用到的相关Json的数据转换 List转Json?12345678910111213141516public s转载 2013-09-12 10:53:11 · 2628 阅读 · 0 评论 -
C# 监视程序耗时
转自:测试代码的运行时间(C#)使用以下方法可以准确的记录代码运行的耗时。 System.Diagnostics.Stopwatch stopwatch = new Stopwatch(); stopwatch.Start(); // 开始监视代码运行时间 // you code .... sto转载 2014-02-08 15:17:40 · 3227 阅读 · 0 评论 -
微软必应·英雄会第三届在线编程大赛:几个bing?
题目详情 本届大赛由微软必应词典冠名,必应词典(http://cn.bing.com/dict/?form=BDVSP4&mkt=zh-CN&setlang=ZH)是微软推出的新一代英语学习引擎,里面收录了很多我们常见的单词。但现实生活中,我们也经常能看到一些毫无规则的字符串,导致词典无法正常收录,不过,我们是否可以从无规则的字符串中提取出正规的单词呢? 例如有一个字原创 2014-02-08 14:57:19 · 1377 阅读 · 0 评论 -
C#判断字符串是否为汉字
/// /// 给定一个字符串,判断其是否只包含有汉字 /// /// /// public static bool IsChinese(string str) { Regex rx = new Regex("^[\u4e00-\u9fa5]$");转载 2013-12-26 15:34:34 · 3786 阅读 · 0 评论 -
正则表达式操作json数据通过键(Key)修改值(Value)
C#操作json数据时,对一个特定键的值进行修改若strJson为字符串,值为{“ID”:"1","Code":"22","QuoteTime":"2013-12-12","Last":"22"};Code也为字符串,值为88strJson = Regex.Replace(strJson, "(?之后,strJson值为{“ID”:"1","Code":"88","QuoteTime"原创 2013-12-26 14:38:11 · 11496 阅读 · 0 评论 -
C#验证身份证是否有效
转自:中国身份证号码验证 #region 验证身份证 public static bool CheckIDCard(string Id) { if (Id.Length == 18) { bool check = CheckIDCard18(Id);转载 2013-12-26 10:56:56 · 5739 阅读 · 0 评论 -
C#实现N*N的顺时针旋转矩阵
看面试算法题突然想到大学时写的一算法题using System;using System.Collections.Generic;using System.Linq;using System.Text;//按三//1 2 3//8 9 4//7 6 5//按四//1 2 3 4//12 13 14 5 //11 16 15 6//10 9 8 7//输原创 2013-06-19 20:38:15 · 3951 阅读 · 2 评论 -
C# 按长度截取字符串(区别汉字,英文,数字)
转自:C# 根据字节数截取字符串(区别汉字,英文,数字) /// ///格式化字符串长度,超出部分显示省略号,区分汉字跟字母。汉字2个字节,字母数字一个字节 /// public static string GetSubString(string str, int n) {转载 2013-11-11 13:56:06 · 3860 阅读 · 0 评论 -
C# Unix时间戳与日期的相互转换
public static string ConvertDateTimeToUnix(DateTime time) { return ((time.ToUniversalTime().Ticks - 621355968000000000) / 10000000).ToString(); } public static Da原创 2013-10-10 09:30:57 · 4204 阅读 · 0 评论 -
C# 根据当前时间获取本月,本周,本季度
转自:C# 根据当前时间获取本月,本周,本季度 DateTime dt = DateTime.Now; //当前时间 DateTime startWeek = dt.AddDays(1 - Convert.ToInt32(dt.DayOfWeek.ToString("d"))); //本周周一 DateTime endWeek = startWeek.AddDays转载 2013-09-12 11:31:57 · 1521 阅读 · 0 评论 -
C# 计算时间差 用timespan函数
转自:C# 计算时间差 用timespan函数 //C# 计算时间差 用timespan函数 //TimeSpan 结构 表示一个时间间隔。 //命名空间:System //程序集:mscorlib(在 mscorlib.dll 中) //1.DateTime值类型代表了一个从公元0转载 2013-09-12 11:46:27 · 3149 阅读 · 0 评论 -
c# Json转 List<T>
首先要引用系统的类using System.Web.Script.Serialization;之后自定义list类 /// /// json传值:商品ID,购买数量,库存ID /// public class Shopping { /// /// 商品ID ///原创 2013-09-12 10:41:20 · 2746 阅读 · 0 评论 -
C#导出excel或csv文件
方法一:Model: public class Execlinfo { public int UserID { get; set; } public string UserName { get; set; } public string Password { get; set; }原创 2013-09-12 10:30:55 · 1761 阅读 · 0 评论 -
最新手机号码验证正则表达式
转自:最新手机号码验证正则表达式js版由于手机号段的不断更新,以前的正则表达式已经无法满足需求。重新编写这条表达式,号段资料来源依据:http://www.jihaoba.com/tools/haoduan/根据u012815322 提供的号段资料:http://www.cnblogs.com/zengxiangzhan/p/phone.html (2018年4月) 现有手机号段:移动:134 1...转载 2013-09-27 11:24:32 · 40600 阅读 · 6 评论