2017年4月23日
摘要: StringBuild的是个动态对象,可直接拼加上字符串;而string对象的步骤:先初始化对象并赋值了,而后在拼加字符串时,先要创建需要拼加的字符串,然后再拼加,所以这就是StirngBuild远比String效率高的原因! (一)String 对象是不可改变的。每次使用 System.Strin 阅读全文
posted @ 2017-04-23 11:18 张鑫4477 阅读(240) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; using Syste 阅读全文
posted @ 2017-04-23 10:30 张鑫4477 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 一.创建数据库 create database ADO1 create table Student (Code nvarchar(200) primary key not null, Name nvarchar(200) not null, Sex bit not null, Birthday da 阅读全文
posted @ 2017-04-23 10:26 张鑫4477 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 把加工好的信息更好的展示给用户 显示生日的时候不是bool型判断,而是字符串"男""女" 阅读全文
posted @ 2017-04-23 10:20 张鑫4477 阅读(83) 评论(0) 推荐(0) 编辑