织梦CMS - 轻松建站从此开始!

我的网站

汇编语言 软件工程 C/C++语言编程 机器人编程 算法 C#编程 vb .net教程 Java教程 VBnet 移动开发 c#教程
当前位置: 主页 > 编程开发 >
  • C#教程之 C#教程之 日期:2017-07-01 23:34:28 点击:68 好评:0

    代码如下: //调用API [System.Runtime.InteropServices.DllImport(user32.dll, CharSet = System.Runtime.InteropServices.CharSet.Auto, ExactSpelling = true)] public static extern IntPtr GetForegroundWindow(); //获得本窗体的句柄 [Sys...

  • C#教程之C#中方括号[]的语法及作用介绍 日期:2017-07-01 23:33:56 点击:145 好评:0

    1. C#实现.NET组件与COM组件的互操作 [DllImport(kernel32.dll)]这叫引入kernel32.dll这个动态连接库。 这个动态连接库里面包含了很多WindowsAPI函数,如果你想使用这面的函数,就需要这么引入。举...

  • C#教程之C# 泛型类(函数)的实例化小例子 日期:2017-07-01 23:33:36 点击:97 好评:0

    泛型可以用于类,也可以用于函数。如 泛型类: 复制代码 代码如下: public class MyClassT { public T MyElement { get; set; } } 泛型函数: 复制代码 代码如下: public T ReturnElementT() { throw new NotImple...

  • C#教程之C# 撒列实现关键字过滤的实例 日期:2017-07-01 23:33:04 点击:121 好评:0

    一直对搜索、过滤很好奇,觉得他们很有技术含量,只有非常NB的人才能做。很想知道他们的原理,实现这样的功能,设计是不是必须得非常NB非常奇特,代码是不是要写得非常好,性能...

  • C#教程之.c# 获取网页中指定的字符串信息的实例 日期:2017-07-01 23:32:45 点击:145 好评:0

    代码如下: private void button2_Click(object sender, EventArgs e) { // Create a request for the URL. WebRequest request = WebRequest.Create(https://www.baidu.com/); // If required by the server, set the credentials. request.Credentials =...

  • C#教程之C# 判断字符串第一位是否为数字 日期:2017-07-01 23:32:22 点击:200 好评:0

    代码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Text.RegularExpressions; name...

  • C#教程之VB.NET中Caching的使用方法 日期:2017-07-01 23:31:52 点击:72 好评:0

    ASP.NET通过两种方式支持缓存:通过Cache API存储任意数据,通过页面输出缓存经常被访问的页面。让我们来看一个例子。 一个电子商务的站点, 它的目录一般一周更新一次。站点提供了...

  • C#教程之C# String Replace高效的实例方法 日期:2017-07-01 23:31:31 点击:60 好评:0

    代码如下: [ThreadStatic] static char[] mTempChars; protected static char[] GetTempData() { if (mTempChars == null) mTempChars = new char[1024 * 64]; return mTempChars; } public static string Replace(string value, string oldData, string...

  • C#教程之c#根据文件类型获取相关类型图标的方法 日期:2017-07-01 23:30:59 点击:73 好评:0

    代码如下: using System; using System.Collections.Generic; using System.Text; namespace WindowsFormsApplication1 { using System; using System.Drawing; using System.Runtime.InteropServices; using Microsoft.Win32; using System.Reflection;...

  • C#教程之C# 如何判断两个文件内容是否相同的方 日期:2017-07-01 23:30:31 点击:186 好评:0

    该哈希算法为一个文件生成一个小的二进制指纹,从统计学的角度来看,不同的文件不可能生成相同的哈希码 要生成一个哈希码,必须首先创建一个HashAlgorithm对象,通过HashAlgorithm.Cr...

推荐内容