摘要:
Bitmap Image Graphicsprivate void DrawImagePointF(PaintEventArgs e){ // Create image. Image newImage = Image.FromFile("SampImag.jpg"); // Create point... 阅读全文
摘要:
C#利用WebClient 两种方式下载文件 阅读全文
摘要:
publicpartialclassForm1:Form{publicForm1(){InitializeComponent();}privatevoidbutton1_Click(objectsender,EventArgse){stringinput=textBox1.Text.Trim();i... 阅读全文
摘要:
正则表达式 匹配中文,英文字母和数字及_的写法!同时控制长度using System.Text.RegularExpressions;匹配中文:[\u4e00-\u9fa5]英文字母:[a-zA-Z]数字:[0-9]匹配中文,英文字母和数字及_: ^[\u4e00-\u9fa5_a-zA-Z0-9]... 阅读全文