摘要: 1. 代码示例2. 注意事项1. 代码示例using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace SortTest{ class Program { static void Main(string[] args) { List<Person> people = new List<Person>(); people.Add(new Person(50, "Fred")); people.Add(new Person(30, & 阅读全文
posted @ 2011-03-30 16:29 qiang.xu 阅读(2331) 评论(0) 推荐(0)
摘要: sql中删除表中的数据有两种方法:1. delete * from TALBENAME2. truncate table TABLENAME上面的两种方式均是能够删除TABLENAME中的数据,但是第二种方式性能更好,第二种方式是不进行日志的记录。 阅读全文
posted @ 2011-03-30 15:20 qiang.xu 阅读(5114) 评论(0) 推荐(0)
摘要: 1. unity简介 2.简单的哦入门示例程序 3. 代码下载 阅读全文
posted @ 2011-03-30 08:58 qiang.xu 阅读(827) 评论(0) 推荐(0)