执行引擎以及丰富的类库资源, 同时又不喜欢 Python 语法的程序员, cpy 提供了一个解决方案. Cpy 是一种类 C 语法的脚本语言, 拥有 Python 的所有类库. class A{ public a = 0; public
//1.设置WinForm窗体属性showinTask=false //2.加notifyicon控件notifyIcon1,为控件notifyIcon1的属性Icon添加一个icon图标。 //3.添加窗体最小化事件(首先需要添加事件引用): this.SizeChanged += new System.EventHandler(this.Form1_SizeChanged); //上面一行是主
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO;
); char diskname; scanf("%c",&diskname); char s[32]; sprintf(s,"chkdsk %c: /F",diskname); int index=system(s);
------------ // All Rights Reserved , Copyright (C) 2010 , Jirisoft , Ltd. //-----------------------
这段c#代码通过timer定时器每隔5秒钟调用一次OnTimerElapsed事件,在屏幕上输出信息,这是一个简单的timer定时器使用范例,可以大概了解一些C#中timer的用法 using System;
swap(&month1,&month2); swap(&day1,&day2); } int a,b,c; if(isRunNian(year1)) a=366-DiJiTian(year1,month1
C#通过Socket在网络间发送和接收图片的演示代码 using System; using System.Collections.Generic; using System.Text; using System
using System; using System.IO; using System.IO.Compression; using System.Runtime.Serialization.Formatters.Binary; using System.Runtime.Serialization.Formatters.Soap; using System.Text; using System.Xm
添加更新数据在类中写好,然后在Global.asax里面调用这个类,设置 TestTimer.Start(0, 30000);为1分钟 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Threading; namespace OKGO.Web { pu
C#获取本机IP地址和Mac地址的代码 查找了几个方法,经过调试修改,下面这个方法能很好的获取到本地的IP和MAC地址。可以用于这方面的功能实现。主要是要添加System.Management的引用。
public partial class Post_Server : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { string type = ""; string Re = ""; Re += "数据传送方式:"; if (Request.RequestType.ToUpper() == "
alert(str){return true;} ", "javaScript");//弹出提示 //下面是你的执行操作代码 } 12、获取网页中的Iframe,并设置Iframe的src HtmlDocument docFrame
MySQLDriverCS下载地址: http://go.rritw.com/sourceforge.net/projects/mysqldrivercs/ static void Main(string[] args) { MySQLConnection conn = new MySQLConnection(new MySQLConnectionString("127.0.0.1","stude
Node *lchild;// 左儿子指针 Node *rchild;// 右儿子指针 char c;//结点字符信息 }Tree[50];// 静态内存分配数组 int loc;// 静态数组中已经分配的结点个数
C++通过ADO操作Sql Server数据库的代码演示 class SQLService { public: SQLService(string procName); ~SQLService(void);
// Mix two sorted tables in one and split the result into these two tables. int *Mix(int *tab1,int *tab2,int count1,int count2) { int i,i1,i2; i = i1 = i2 = 0; int * temp = (int *)malloc(sizeof(int)*(
using namespace std; bool checkNum(char c){ if(c >='0' && c <='9') return true; return false; } bool
XML序列化代码 using System.IO; using System.Text; using System.Xml.Serialization; static string SerializeX(object
- (int)keyCodeForCharacter: (NSString*)character { if(![character length]) return -1; char code; BOOL shift, alt; if(Ascii2Virtual( (char)[character characterAtIndex: 0],shift,alt,code)) { return code