• C#控制台或应用程序中两个多个Main()方法的可行性方案

    大多数初级程序员或学生都认为在C#控制台或应用程序中只能有一个Main()方法。但是事实上是可以有多个Main()方法的。 在C#控制台或应用程序中,在多个类中,且每个类里最多只能存在一个Main()方法的情况是允许存在的。 1 using System; 2 3 namespace ConsoleTest 4 { 5...

    2018-06-17 22:11:17

  • Html

    head title/title style type="text/css" #Text1 { width: 97px; } /style script language="javascript" type="text/javascript"// ![CDATA[ function Button1_onclick() { localStorage.setItem("lastname", "Gates"); alert(localStorage.getItem("lastname")); loc...

    2018-06-17 22:11:12

  • C#Execl

    using System.IO;using System.Text;namespace iLIS.Common{ /// summary /// 生成Excel文档内容 /// 存入工作流 /// /summary public class ExcelDocumentx { private readonly StreamWriter _streamWriter; public ExcelDocumentx(Stream stream) { _streamWriter =...

    2018-06-17 22:11:02

  • Sturct类型装箱时会遇到的问题

    Object在拆箱时会在栈空间生成一个临时变量。所以Struct在使用时尽量将内容都声明为readonly为好 [Struct] type Point= val mutable X: double val mutable Y: double member x.Change(a, b) = x.X - a x.Y - b override x.ToString() = sprintf " %A %A " x.X x.Y let...

    2018-06-17 22:11:11

  • 二、MVC3+EF单表增删改查

    document 表为例 写入静态类NorthwindDataProvider: Controller可直接调用:如 1 // 获取document表全部数据 2 NorthwindDataProvider.GetDocuments() document 类:EF 映射 1 public static class NorthwindDataProvider 2 { 3 const string NorthwindDataContextKey...

    2018-06-17 22:10:53

  • winform代码生成器(二)

    代码下载 地址 http://pan.baidu.com/s/1nuZjyat 接着说 上文继续说,这次我们要生成主从表. 此方用到了第三方的 控件 DevExpress 的Gridview .大家可去网上下载,安装后再开发. 主从表的设计,我用的 是splitContainer1 控件,水平方向拆分, 看看表 设计器文件, 发生了什...

    2018-06-17 22:11:05

  • C#之泛型

    泛型不仅是C#的一部分,而且与程序集中的IL代码紧密地集成。有了泛型,就可以创建独立于被包含类型的类和方法。这样就可以不必给不同的类型编写功能相同的许多方法或类,只创建一个方法或类即可。 另一个减少代码的选项是使用Object类,因为Object类是不安全的。 泛型...

    2018-06-17 22:11:02

  • sql存储过程

    1.null 与别的数值进行sum运算和得到的仍旧是null,这时候可以用isnull函数 refer: http://www.studyofnet.com/news/1210.html 2.存储过程中没有for循环,需要用while语句 eg: declare @n intset @n=0while @n9begin //begin end 类似于大括号select @nset @n=@n+1end...

    2018-06-17 22:11:00

  • Js调用asp.net后台代码

    方法一 : 1、首先建立一个按钮,在后台将调用或处理的内容写入button_click中; 2、在前台写一个js函数,内容为document.getElementById("btn1").click() 或者document.getElementById("btn1").onclick() 3、在前台或后台调用js函数,激发click事件,等于访问后台c#函...

    2018-06-17 22:10:59

  • C#图解教程-方法参数笔记(上)

    一晃大学四年要过去了,期间乱点了很多技能点, 导致每一项技能都只是处于入门阶段。为了将C#作为我的主要技能,准备恶补相关姿势(知识),通过各种技术论坛的推荐,找到了《C#图解教程》这本书。初一看,感觉只不过都只是把知识罗列了出来而已,而且很多都是已知的,...

    2018-06-17 22:10:55

2