C#
丁葵草
这个作者很懒,什么都没留下…
展开
-
C# 遍历控件或类的属性(设置取得)其值
using System.Reflection; PropertyInfo[] pis = null; //对象所有属性组成的集合 propertys string val = null; ent = new myClass(); //ent 为控件或者类实例原创 2015-04-29 14:34:44 · 818 阅读 · 0 评论 -
写LOG到TXT文件
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.IO;namesp原创 2015-05-16 15:37:41 · 1914 阅读 · 0 评论 -
C#.net用QQ服务邮箱群发邮件2
C#.net用QQ服务邮箱群发邮件2原创 2015-05-16 15:27:44 · 528 阅读 · 0 评论 -
C#.net用QQ服务邮箱群发邮件
//winform中添加一个按钮 private void button1_Click(object sender, EventArgs e) { //发送者邮件地址 string host = "1234578965@qq.com"; //发送者邮件开通POP3/IMAP/SM原创 2015-04-02 11:49:26 · 854 阅读 · 0 评论 -
腾迅股票数据接口
//使用WEBCLIENT请求网页 WebClient client = new WebClient(); //下载某个网页的内容 //byte[] by = client.DownloadData("http://hq.sinajs.cn/list=sh600028");//新浪数原创 2015-08-31 14:17:43 · 2082 阅读 · 0 评论