码迷,mamicode.com
首页 >  
搜索关键字:system center    ( 58910个结果
Nlog 简单的快速攻略
废话不多说直接进入正题。1、在项目中加入Nlog的应用安装后会出现两个文件2、我们打开Nlog.config配置文件设置日志记录 3、用简单的控制台程序测试一下using System;using System.Collections.G...
分类:其他好文   时间:2015-02-25 23:41:48    阅读次数:206
Hello World~~~~~~~java之旅开始了
package grammer_exercises;import java.util.*;public class HelloWorld { public static void main(String[] args){ System.out.println("Hello Wor...
分类:编程语言   时间:2015-02-25 22:15:38    阅读次数:151
1015. Reversible Primes (20)
A reversible prime in any number system is a prime whose "reverse" in that number system is also a prime. For example in the decimal system 73 is a reversible prime because its reverse 37 is also a pr...
分类:其他好文   时间:2015-02-25 21:10:58    阅读次数:151
C#发送邮件三种方法,Localhost,SMTP,SSL-SMTP
通过.Net FrameWork 2.0下提供的“System.Net.Mail”可以轻松的实现,本文列举了3种途径来发送:1.通过Localhost;2.通过普通SMTP;3.通过SSL的SMTP;下面一个一个来说:1.通过LocalHostC#代码publicvoidSendMailLocalh...
分类:Windows程序   时间:2015-02-25 21:06:10    阅读次数:227
8、图片的上传与读取
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Web程序   时间:2015-02-25 21:02:49    阅读次数:149
Java基本
定义类的方法class 类名{ 属性; 方法;}属性也叫成员变量,主要用于描述累的状态方法也叫成员方法,主要用于描述类的行为class Person{ int age; void show() { System.out.println(“oh,my god ! I am”+age...
分类:编程语言   时间:2015-02-25 18:33:26    阅读次数:191
碰撞法线
using UnityEngine;using System.Collections;public class co : MonoBehaviour {private Collider collider;private ContactPoint contacts;[SerializeField]pr...
分类:其他好文   时间:2015-02-25 18:21:53    阅读次数:187
9、面向对象以及winform的简单运用(输入输出流、图像的上传和读取)
一、输入输出流1、概念:输入输出流主要用于保存、读取文件,其内容保存在内存中。2、使用方法:using System.IO;//System.IO 命名空间包含允许读写文件和数据流的类型以及提供基本文件和目录支持的类型。3、代码段实现读取和保存功能:读取文字:OpenFileDialog op = ...
分类:Windows程序   时间:2015-02-25 17:00:04    阅读次数:192
.NET开源工作流RoadFlow-表单设计-数据表格
数据表格即在表单中显示一个table,该table数据可以来自任意自定义的来源:数据类型:指定表格的数据源类型 1、datatable,即.net中的System.Data.DataTable 2、HTML,即html字符串的形式: 3、json,即json字符串的形式:[[1,2,3,4],...
分类:Web程序   时间:2015-02-25 16:51:03    阅读次数:337
使用timer8秒读取一次方法进行操作
public void TestofTimer() { System.Timers.Timer tt = new System.Timers.Timer(); //获取或设置引发 Elapsed 事件的间隔。毫秒为单位 ...
分类:其他好文   时间:2015-02-25 16:46:55    阅读次数:183
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!