生成唯一时间戳ID代码分享 /// ///时刻戳ID /// publicclassTimestampID { privatelong_lastTimestamp; privatelong_sequence;//计数从零开始 p... IT技术# C++ 3年前24
FTPHelper,FTp公共帮助类同享 usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Net; u... IT技术# C++ 3年前18
经过抓取页面获取当天天气信息 ///得到天气数据 ///数组(0、天气;1、气温;2、风力;3、紫外线;4、空气) publicstaticstring[]GetWeather() { Regexregex; string[]we... IT技术# C++ 3年前36
C#中B、KB、MB、GB、TB转换 ///转换事情 privatevoidsimpleButton2_Click(objectsender,EventArgse) { this.textEdit2.Text=HumanReadableF... IT技术# C++ 3年前42
C#中dynamic应用Clay 一,多种办法初始化目标 1,最简略的目标构建和初始化 [C#]纯文本检查 dynamicNew=newClayFactory(); varperson=New.Person(); person.Fir... IT技术# C++ 3年前12
wpf查找父元素和子元素代码 ///根据类型查找子元素 publicListGetChildObjects(DependencyObjectobj,Typetypename)whereT:FrameworkElement { De... IT技术# C++ 3年前48
C#高质量无损压缩图片代码共享 /// ///无损紧缩图片 /// ///原图片地址 ///紧缩后保存图片地址 ///紧缩质量(数字越小紧缩率越高)1-100 ///紧缩后图片的最大巨细 ///是否是第一次调用 /// public... IT技术# C++ 3年前48
ReportViewer生成报表 /// ///设置报表 /// privatevoidSetReport() { //第一步:铲除之前的数据 this.rptView.LocalReport.DataSources.Clear... IT技术# C++ 3年前36
DataTable导出到Excel高效率代码分享 usingMicrosoft.Office.Interop.Excel; usingSystem.Runtime.InteropServices; [DllImport(“User32.d... IT技术# C++ 3年前24
XML帮助类 添加/删除/查找节点 //增加xml节点 privatevoidAddXml(stringimage,stringtitle) { XmlDocumentxmlDoc=newXmlDocument(); xmlDoc.Lo... IT技术# C++ 3年前24