自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

转载 使用python发送Email

import smtplibfrom email.mime.text import MIMETextdef SendEmail(): email = "" #设置收件地址 mailto_list=[email] mail_host="" #设置服务器 mail_user="" #用户名 mail_pass=""...

2015-02-06 15:49:00 143

转载 C#如何测试代码运行时间

第一种方式:System.Diagnostics.Stopwatch stopwatch = new Stopwatch();stopwatch.Start(); // 开始监视代码运行时间// 需要测试的代码 ....stopwatch.Stop(); // 停止监视TimeSpan timespan = stopwatch.Elapsed; // 获取...

2015-02-05 09:55:00 279

转载 C# WinForm TextBox添加水印效果

1、新建项目添加WatermarkTextBox类:using System;using System.Collections.Generic;using System.Text;using System.Windows.Forms;using System.Drawing;using System.ComponentModel;namespace T...

2015-02-03 11:59:00 445

转载 C#判断输入的是否是汉字

第一种方法:正则表达式 string text = "是不是汉字"; for (int i = 0; i < text.Length; i++) {   if (Regex.IsMatch(text.ToString(), @"[\u4E00-\u9FA5]+$")) ...

2015-01-08 10:52:00 234

转载 C#判断Textbox是否为数字

第一种方法:try{ if (int.Parse(textBox1.Text) > 0) { //操作代码 } else { MessageBox.Show("必须是正整数"); }}catch (FormatException){ MessageBox...

2015-01-08 10:32:00 2663

转载 c# DateTime时间格式和JAVA时间戳格式相互转换

/// java时间戳格式时间戳转为C#格式时间 public static DateTime GetTime(long timeStamp){ DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); long lTime = timeStamp...

2014-12-29 17:12:00 614

转载 C# DateTimePicker控件详解

1、同时显示日期和时间DateTimePicker dtp = new DateTimePicker(); dtp.Format = DateTimePickerFormat.Custom;dtp.CustomFormat = "yyyy-MM-dd HH:mm:ss";2、时间选择方式dtp.ShowUpDown = true;//上下按键方式dtp.S...

2014-12-29 16:49:00 1483

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除