c#
超级飞侠
生活
展开
-
字符和数字转换
1. 把字符转为数字,查代码点,注意是单引号。 如: Response.Write((int)中); //结果为中字的代码:20013 2.、(char)代码 把数字转为字符,查代码代表的字符。 如: Response.Write((char)22269); //返回“国”字。原创 2006-02-07 19:43:00 · 999 阅读 · 0 评论 -
.net exe 程序读写配置文件
有读有写。 class Program { static void Main(string[] args) { // string str1 = AppConfig();// // SetValue("pwd", "Pass@word"); //String ConString = Syst原创 2009-03-19 22:23:00 · 981 阅读 · 0 评论 -
得到对象实例的所有属性内容
得到对象实例的公共可序列化属性:并包装在csv 字符串中。using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Reflection;using System.Runtime.Serialization;using System.Xml.Se原创 2009-03-08 19:09:00 · 533 阅读 · 0 评论 -
得到类型的所有公共属性名称
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Reflection;namespace John.Research.CSharp.AssemblyRes{ public class PropertiesReflector {原创 2009-03-08 18:15:00 · 603 阅读 · 0 评论 -
八皇后问题 c# 实现
代码: using System;using System.Collections.Generic;using System.Text;namespace EightQueen{ class Program { static void Main(string[] args) { InitBoard(board);原创 2009-02-22 22:30:00 · 785 阅读 · 0 评论 -
前序遍历二叉树,中序遍历二叉树,后序遍历二叉树 c#实现
using System.Collections.Generic; using System.Collections; class BiTree { public BiTree leftChild; public BiTree rightChild; public object Data; public BiTr原创 2008-04-09 14:22:00 · 994 阅读 · 0 评论 -
逆转单链表c#模拟实现
/// /// 模拟单链表 /// class LinkNode { public object data; public LinkNode next; public LinkNode(object adata) { this.data = adata; } }原创 2008-04-09 09:01:00 · 1470 阅读 · 2 评论 -
二路归并算法c#实现
class Program { static void Main(string[] args) { int [] arr1={1,3,5,7,9}; int [] arr2={2,4,6,8,10}; int [] result=new int [arr1.Length+arr2.Length];原创 2008-04-07 18:33:00 · 616 阅读 · 0 评论 -
反转字符串
using System;using System.Collections.Generic;using System.Text;using System.Collections;using System.Threading;namespace StringReverse{ class Program { static void Main(string[] args)原创 2008-04-05 14:33:00 · 605 阅读 · 1 评论 -
AutoResetEvent 与 ManualResetEvent
2008-12-09 16:14在.Net多线程编程中,AutoResetEvent和ManualResetEvent这两个类经常用到, 他们的用法很类似,但也有区别。Set方法将信号置为发送状态,Reset方法将信号置为不发送状态,WaitOne等待信号的发送。可以通过构造函数的参数值来决定其初始状态,若为true则非阻塞状态,为false为阻塞状态。如果某个线程调用Wa转载 2009-05-15 16:33:00 · 1916 阅读 · 0 评论