码迷,mamicode.com
首页 >  
搜索关键字:lighting system desi    ( 49417个结果
c#实现每隔一段时间执行代码(多线程)
总结以下三种方法,实现c#每隔一段时间执行代码:方法一:调用线程执行方法,在方法中实现死循环,每个循环Sleep设定时间;方法二:使用System.Timers.Timer类;方法三:使用System.Threading.Timer;123456789101112131415161718192021...
分类:编程语言   时间:2014-05-23 11:10:18    阅读次数:379
Loader for loading embedded assemblies z
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Reflection;using System.Runtime.InteropServices;namespace...
分类:其他好文   时间:2014-05-23 10:59:24    阅读次数:223
C#中窗体间参数传递实现增删改的例子
此例子中传递的变量有string type,string text,储存在结构数组中;static int i储存在Sta类中(如果在外面声明,调用它老出错),里面有geti和seti函数来操纵它。各个窗体实现功能及截图:各窗体代码如下:using System;using System.Colle...
分类:Windows程序   时间:2014-05-23 10:41:47    阅读次数:550
Mediator模式
参考资料《大话设计模式》Mediator(中介者)模式:使各个对象不需要显式的相互调用,从而使其耦合松散。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ds_me...
分类:其他好文   时间:2014-05-23 10:13:17    阅读次数:331
linux进程间通讯-System V IPC 信号量
UNIX 内核管理的进程自主地操作,从而产生更稳定的系统。然而,每个开发人员最终都会遇到这样的情况,即其中一组进程需要与另一组进程通信,也许是为了交换数据或发送命令。这种通信称为进程间通信(Inter-Process Communication,IPC)。System V (SysV) UNIX 规范描述了以下三种 IPC 机制,它们统称为 SysV IPC:...
分类:系统相关   时间:2014-05-22 12:49:46    阅读次数:469
职责链模式、桥接模式
参考资料《大话设计模式》职责链模式:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ds_chainofresponsibility{ class Progr...
分类:其他好文   时间:2014-05-20 12:52:03    阅读次数:328
Linux System Programming 学习笔记(五) 进程管理
1. 进程是unix系统中两个最重要的基础抽象之一(另一个是文件)A process is a running programA thread is the unit of activity inside of a processthe virtualization of memory is ass...
分类:系统相关   时间:2014-05-20 12:33:05    阅读次数:407
ndk编译jsoncpp
本例采用jsoncpp-src-0.6.0-rc2-amalgamation.tarjava调用语句 int id = 1001; String name = "Kevin"; String result = system.toBuildJson(id, name); Log.i(TAG,St...
分类:Web程序   时间:2014-05-20 12:29:01    阅读次数:387
winform学习日志(二十八)----------将汉字转化为拼音,正则表达式和得到汉字的Unicode编码
一:上图,不清楚的看代码注解,很详细了二:具体代码窗体代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using Sy...
分类:Windows程序   时间:2014-05-20 11:18:57    阅读次数:839
SqlHelper 简单版
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;namespace AddressBook{...
分类:数据库   时间:2014-05-20 10:08:21    阅读次数:328
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!