11 2013 档案

摘要://注意:请使用VS2010打开以下的源代码。//源代码地址:http://pan.baidu.com/s/1j9WVRusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Data.OleDb;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace WindowsFormsApplication22{ ... 阅读全文
posted @ 2013-11-24 22:31 cnxy 阅读(1072) 评论(0) 推荐(0) 编辑
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication13{ class Program { static void Main(string[] args) { Test t = new Test("Age",16); t.Run(); t.SetT1Value = "Height"; t.SetT2Va... 阅读全文
posted @ 2013-11-20 22:52 cnxy 阅读(497) 评论(0) 推荐(0) 编辑
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace ConsoleApplication11{ class Program { public delegate void TestDeleagte(string temp); static void Main(string[] args) { Thread t = new Thread(() =>... 阅读全文
posted @ 2013-11-20 20:55 cnxy 阅读(356) 评论(0) 推荐(0) 编辑
摘要:1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading; 6 7 namespace ConsoleApplication9 8 { 9 class Program10 {11 static void Main(string[] args)12 {13 14 15 // 异步调用 16 // 将需传递给异步执行方法数... 阅读全文
posted @ 2013-11-19 20:40 cnxy 阅读(439) 评论(0) 推荐(0) 编辑
摘要:源文件地址:http://pan.baidu.com/share/link?shareid=2536126078&uk=1761850335创建如图所示的控件:源代码: usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Runtime.InteropServices;namespa 阅读全文
posted @ 2013-11-09 15:35 cnxy 阅读(3603) 评论(0) 推荐(1) 编辑
摘要:本示例只能加密英文文本,使用的算法为异或算法。源代码:http://pan.baidu.com/share/link?shareid=3241348313&uk=1761850335(本示例属于原创,转载请注明出处)1)打开此软件,可以点击如下图所示的“写入TXT”按钮,将所要加密的文本读到软件文本框里;2)所要加密的文本内容如下图的TXT文件所示;3)在“加密/解密字符”右边的文本框输入一个字符,本示例使用“-”字符,如下图所示;4)点击“加密”按钮后,将出现一个保存为“*.txts”文件的对话框,本示例使用“demo.txts”,将该文件保存后将生成一个“demo.txts”的文件 阅读全文
posted @ 2013-11-09 15:29 cnxy 阅读(1421) 评论(0) 推荐(0) 编辑
摘要:有关XML文件编写规范,请参考:http://www.w3school.com.cn/xml/index.aspXML内容如下(文件名为:Information.xml):浏览器显示: 001Choi21MaleGuiLin 002Li18FemaleShanghai 003Xu28MaleBeijing 004Xi19MaleHongkong 使用TreeView控件编写代码如下(完整项目文件,请从http://pan.baidu.com/s/1eylW下载): usingSystem;usingSystem.Collections.Generic;usingSystem.Comp... 阅读全文
posted @ 2013-11-09 15:24 cnxy 阅读(3448) 评论(0) 推荐(0) 编辑
摘要:static void Main(string[] args) { // Create the data source by using a collection initializer. var students = new[] { new {First="Svetlana", Last="Ome 阅读全文
posted @ 2013-11-09 15:16 cnxy 阅读(302) 评论(0) 推荐(0) 编辑

著作版权归 cnxy.me 所有