全部博文(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-08-20 17:14:32
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace ConsoleApplication2{ class Program {.........【阅读全文】
发布时间:2016-08-11 10:28:31
//先拖一个label1到界面,然后在Paint事件里面复制代码 private void Form1_Paint(object sender, PaintEventArgs e) { &n.........【阅读全文】
发布时间:2016-07-04 11:08:36
private void SaveFileDialog(){ //string localFilePath, fileNameExt, newFileName, FilePath; SaveFileDialog saveFileDialog1 = new SaveFileDialog(); //设置文件类型 saveFileDialog1.Filter = " txt files(*.txt)|*.txt|All files(*.*)|*.*"; //设置默认文件类型显示顺序 .........【阅读全文】
发布时间:2016-06-29 16:41:32
不能盲目将HTML中所有的图片转换成二进制来存储,当图片越来越大时,image的data域会变得非常大,从而导致无法通过data来读取图片。 图片数据读不出来的现象: 由于很多情况是不清楚图片的,处理HTML的图片问题,还是使用相对路径来处理。 附将图片转为data数据的方法: private string ReplaceFileSyste.........【阅读全文】