码迷,mamicode.com
首页 >  
搜索关键字:lighting system desi    ( 49417个结果
NPOI 2.0 创建Excel文件
如果只是简单的处理的话,只需要引用下载压缩包里的NPOI.dll (office 2003)或NPOI.OOXML.dll(office 2007) 文件而已。 1 using System; 2 using System.Collections.Generic; 3 using System.Li...
分类:其他好文   时间:2014-05-09 04:29:08    阅读次数:324
java实现——008旋转数组的最小数字
1 public class T008 { 2 public static void main(String[] args) { 3 int[] num = { 3, 4, 5, 1, 2 }; 4 System.out.println(min(num, 5...
分类:编程语言   时间:2014-05-09 04:12:47    阅读次数:326
工作和学习中的心得
属性器的使用,通用的 写东西精致 细致public System.Int16 Status { get; set; } public string StatusValue { get { if (Status =...
分类:其他好文   时间:2014-05-09 04:03:29    阅读次数:256
ADO.NET连接数据库
using System.Data;using System.Data.Sql;using System.Data.SqlClient; protected void Page_Load(object sender, EventArgs e) { SqlConn...
分类:数据库   时间:2014-05-09 04:01:32    阅读次数:388
java实现——009Fibonacci数列
1.循环 1 public class T009 { 2 public static void main(String[] args){ 3 System.out.println(fibonacci(3)); 4 } 5 public static long ...
分类:编程语言   时间:2014-05-09 03:58:09    阅读次数:270
自定义模型绑定系统
一 : 创建自定义的值提供器(IValueProvider接口定义了值提供器)==目的==>把"自己的数据源"添加到绑定过程中. 自定义值提供器就需要实现IValueProvider接口. namespace System.Web.Mvc{ /// /// Defines the methods t...
分类:其他好文   时间:2014-05-09 03:51:50    阅读次数:403
.net Reflection(反射)- 一
Reflection 反射需要引用using System.Reflection; 命名空间。 通过Assembly 类的 Load( ); 加载指定的 程序集 Assembly 是不能被实例化, 所以能通过调用静态方法Load();加载指定程序集。 通过GetType()RefLiuyl...
分类:Web程序   时间:2014-05-09 03:36:17    阅读次数:444
C#发送邮件代码
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net.Mail;namespace MailGet{ public class Utility ...
分类:其他好文   时间:2014-05-09 03:30:26    阅读次数:269
NPOI 2.0 读取、编辑、保存Excel文件
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using NPOI.SS.UserModel;using NPOI.XSSF.UserModel;na...
分类:其他好文   时间:2014-05-09 03:29:58    阅读次数:318
WPF单线程定时器 简单实例
//窗体加载完毕 void MyMessageBox_Loaded(object sender, RoutedEventArgs e) { //启动定时期倒计时,多线程计时 //System.Threading....
分类:编程语言   时间:2014-05-09 03:27:00    阅读次数:366
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!