摘要:
简单写了个C# 以正则获得URL地址栏参数的方法 public static string GetPara(string url, string name) { Regex reg = new Regex(@"(?:^|\?|&)" + name +... 阅读全文
摘要:
C#扩展方法的实现,可用于通过定义接口方法,实现多类继承。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication12{ //定义... 阅读全文
摘要:
/*------------------------------------------------------------------------------- 功能: 生成表记录的SQL语句(注TEXT与NTEXT字段导出为NULL)参数说明: @Table_Name 表名 @IsPrint 是... 阅读全文
摘要:
EntityFramework C# SQL 更新结构 阅读全文
摘要:
/**************************************************************名 称: fn_split_text功能简介: [将文本 按 分隔符 拆分成临时表]参数简介: [@text] 需拆分的文本 返回: 表: subcolst... 阅读全文
摘要:
在服务端 web.config添加以下配置 客户端脚本如下: Get $.ajax({ url: "http://localhost:49302/api/meeting/login/xxx", ... 阅读全文
摘要:
在网上下载 ThoughtWorks.QRCode.dll以下为代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;usi... 阅读全文
摘要:
在vs中,新增一个Form 会对应生成三个文件from1.cs、form1.designer.cs,其中designer文件是放在第一个文件的下一级的,这样看起来文件的结构非常清楚。实际应用中,我们也经常会把一个类折分成几个文件来编写,以确保文件不会过长,但这些文件顺序排列起来,会使文件变得非常... 阅读全文