全部博文(1293)
发布时间:2016-10-12 11:46:31
遍历获得一个实体类的所有属性名,以及该类的所有属性的值//先定义一个类:public class User{ public string name { get; set; } public string gender { get; set; } public string age { get; set; }}//实例化类,并给实列化对像的属性赋值:User u = new User();u.name = "ahbool";u.gender = ".........【阅读全文】
发布时间:2016-09-27 14:18:26
转自网址:http://www.cnblogs.com/wyBlog117/p/5308141.htmlC#.net模拟提交表单POST方法一、System.Net.WebClient WebClientObj = new System.Net.WebClient(); System.Collections.Specialized.NameValueCollection PostVars&nb.........【阅读全文】
发布时间:2016-09-06 13:53:25
http://blog.csdn.net/lishehe/article/details/8257545......【阅读全文】
发布时间:2016-08-25 17:09:16
问题:如果在Access 中数据库操作时提示from子句语法错误原因:语句中某一单词为Access中的关键字。如:select * from user。其中user就是一关键字。解决:用中括号[]将其括起来。如:[user]即可。像Counter也是Access的关键字。所以给ACCESS命令表时要时刻注意不能与ACCESS的关键字重名。.........【阅读全文】
发布时间:2016-08-20 17:14:32
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace ConsoleApplication2{ class Program {.........【阅读全文】