悉野小楼

导航

上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 27 下一页

2011年12月21日

获取程序当前文件夹 c#

摘要: MessageBox.Show("Environment.CurrentDirectory:"+Environment.CurrentDirectory+"\r\nApplication.ExecutablePath"+Application.ExecutablePath+"\r\nDirectory.GetCurrentDirectory()"+Directory.GetCurrentDirectory()+"\r\nAppDomain.CurrentDomain.BaseDirectory"+AppDomain 阅读全文

posted @ 2011-12-21 15:51 悉野 阅读(310) 评论(1) 推荐(0) 编辑

2011年12月20日

桌面程序自动更新程序(C# )

摘要: 更新程序是比较本地与局域网另一台机上的UpdateList.xml文件中Version差异来更新的.如果Version不一样,会调用更新更新程序检查Files下面各个File的ver如果本地与远程不一样, 或没有则会更新本地的文件.在主程序开始时调一CheckUpdate 一时内打开多次只会提示一次private static void CheckUpdate(){ try { XmlDocument docLocal = new XmlDocument(); XmlDocument docServer = new XmlDocument(); docLocal.Load... 阅读全文

posted @ 2011-12-20 13:26 悉野 阅读(892) 评论(0) 推荐(0) 编辑

C# 文件版本信息读取

摘要: //右击项目->属性->应用程序->程序集信息可以设置版本号//程序集版本stringver=System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();Console.WriteLine("程序集版本:"+ver);//文件版本System.Diagnostics.FileVersionInfomyFileVersionInfo=System.Diagnostics.FileVersionInfo.GetVersionInfo(System.Diagnost 阅读全文

posted @ 2011-12-20 10:38 悉野 阅读(2088) 评论(0) 推荐(0) 编辑

2011年12月9日

C#读写注册表 二进制写入

摘要: msn传送exe rar等文件要杀毒软件检测. 自己写个软件修改注册表, 跳过检测usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingMicrosoft.Win32;usingSystem.Runtime.InteropServices;namespaceRegiterMsnAnitVirus{classProgram{staticvoidMain(string[]args){//打开注册表修改msn杀毒软件键值RegistryKeykey=Registry.Users.OpenS 阅读全文

posted @ 2011-12-09 12:56 悉野 阅读(600) 评论(0) 推荐(0) 编辑

2011年12月8日

C# .net Remoting最简单的例子

摘要: C# .netRemoting最简单的例子C# Remoting例子下载服务端:usingSystem;usingSystem.Runtime.InteropServices;usingSystem.Runtime.Remoting.Channels.Tcp;usingSystem.Runtime.Remoting.Channels;usingSystem.Runtime.Remoting;//在引用中添加namespaceRemotingTest{classProgram{staticvoidMain(string[]args){try{TcpServerChannelserver=newT 阅读全文

posted @ 2011-12-08 17:46 悉野 阅读(975) 评论(0) 推荐(0) 编辑

输出函数调用时间 多少毫秒(转)

摘要: ///<summary>///得到系统时钟周期的当前值///</summary>///<paramname="lpPerformanceCount">输出参数,得到系统时钟周期的当前值</param>///<returns>返回是否获取成功</returns>[DllImport("kernel32.dll",SetLastError=true)]publicstaticexternboolQueryPerformanceCounter(outlonglpPerformanceCou 阅读全文

posted @ 2011-12-08 16:38 悉野 阅读(344) 评论(0) 推荐(0) 编辑

C# 16进制字符串转成整数

摘要: 可以用:Convert.ToInt32(str, 16)如果全小写, 可以用:int[] b = new int[str.Length];Array.Clear(b, 0, str.Length); //初始化for(int j = 0; j < str.Length; ++j){ if (b[j] >= 97) b[j] = b[j] - 87; else b[j] = b[j] - 48;}在大量字符串转换时, 下面那个转换效率会高很多.在大量循环中尽量少用new 关键字, 少用.net自带的封装类.今天在一个remoting项目中, 远... 阅读全文

posted @ 2011-12-08 16:09 悉野 阅读(3935) 评论(0) 推荐(0) 编辑

2011年12月5日

winform双缓冲, 从内存画图到到picturebox

摘要: base.SetStyle(ControlStyles.OptimizedDoubleBuffer,true);privateImageDrawImage(stringstrFilePath){try{Bitmapbitmap=newBitmap(strFilePath);//如果原图片是索引像素格式之列的,则需要转换if(IsPixelFormatIndexed(bitmap.PixelFormat)){Bitmapbmp=newBitmap(bitmap.Width,bitmap.Height,PixelFormat.Format32bppArgb);using(Graphicsg=Gra 阅读全文

posted @ 2011-12-05 16:24 悉野 阅读(2648) 评论(0) 推荐(0) 编辑

2011年11月29日

c#真彩图转成灰度图

摘要: ///<summary>///根据图片路径,返回一张灰度图///</summary>///<paramname="strPicPath">图片路径</param>///<returns>灰度图对象</returns>publicImageGetGrayPicture(stringstrPicPath){/**Stride:图像扫描宽度*图像在内存里是按行存储的。扫描行宽度就是存储一行像素,用了多少字节的内存。*比如一个101×200大小的图像,每个像素是32位的(也就是每个像素4个字节),那么 阅读全文

posted @ 2011-11-29 17:47 悉野 阅读(3155) 评论(0) 推荐(0) 编辑

查找类似图片(Find Similar Image)

摘要: ///<summary>///返回一个16位hash码(先将图片转成灰度,再分块得到每个分块的灰度值(0-255),再开方,得0-15值.正好用16进制数表示///</summary>///<paramname="strPicPath">图片路径</param>///<returns>16位hash码</returns>publicstringGetPictureHashCode(stringstrPicPath){try{//如果传的是字节数组可以用MemoryStream来读取intiHBlockN 阅读全文

posted @ 2011-11-29 17:05 悉野 阅读(1897) 评论(2) 推荐(0) 编辑

上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 27 下一页