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

我的网站

汇编语言 软件工程 C/C++语言编程 机器人编程 算法 C#编程 vb .net教程 Java教程 VBnet 移动开发 c#教程
当前位置: 主页 > 编程开发 >
  • C#教程之c# winform多线程的小例子 日期:2017-07-01 22:30:52 点击:184 好评:0

    在文本框中输入一个数字,点击开始累加按钮,程序计算从1开始累计到该数字的结果。因为该累加过程比较耗时,如果直接在UI线程中进行,那么当前窗口将出现假死。为了有更好的用...

  • C#教程之C#中调用命令行cmd开启wifi热点的实例代码 日期:2017-07-01 22:30:17 点击:175 好评:0

    要点1:cmd命令行的输入命令 netsh wlan set hostednetwork mode=allow ssid=用户名 key=密码 netsh wlan start hostednetwork netsh waln stop hostednetwork netsh interface ip set address name=本地连接 source=dhcp 要点2:在C...

  • C#教程之.获得.net控件的windows句柄的方法 日期:2017-07-01 22:29:57 点击:145 好评:0

    代码如下: class WinAPI { [DllImport(coredll.dll)] private static extern IntPtr SetCapture(IntPtr hWnd); [DllImport(coredll.dll)] private static extern IntPtr GetCapture(); public static IntPtr GetHWnd(Control ctrl) { IntPtr hOldWnd = Ge...

  • C#教程之C#简单获取时间差的小例子 日期:2017-07-01 22:29:38 点击:61 好评:0

    代码如下: //计算耗时任务所需的秒数 public int GetTimeSpan(DateTime dtStart, DateTime dtEnd) { TimeSpan tsStart = new TimeSpan(dtStart.Ticks); TimeSpan tsEnd = new TimeSpan(dtEnd.Ticks); TimeSpan ts = tsEnd.Subtract(tsStart).D...

  • C#教程之c#对字符串操作的技巧小结 日期:2017-07-01 22:29:14 点击:122 好评:0

    字符串是由类定义的,如下 1 public sealed class String : IComparable, ICloneable, IConvertible, IComparablestring, IEnumerablechar, IEnumerable, IEquatablestring 注意它从接口IEnumerablechar派生,那么如果想得到所有单...

  • C#教程之C#随机生成Unicode类型字符串 日期:2017-07-01 22:28:54 点击:163 好评:0

    代码如下: public string NextString(int charLowerBound, int charUpperBound, int length) { return new String( Enumerable.Repeat(0, length) .Select(p = (char)Next(charLowerBound, charUpperBound)) .ToArray()); } 其中,charLowerBound和ch...

  • C#教程之.net 一些无法catch的异常 日期:2017-07-01 22:28:32 点击:106 好评:0

    1.StackOverFlowException (一般来说这个不是真的堆栈不够了,而是你的代码出现了无线递归),如果你用throw new StackOverFlowException 还是可以catch的 2.OutOfMemoryException (好像只有 box newarr newobj 才会抛...

  • C#教程之c# 对windows用户和组操作实例 日期:2017-07-01 22:28:03 点击:112 好评:0

    代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.DirectoryServices; namespace JH.Framework.Security { /// /// 计算机用户和组操作类 /// public class UserAndGroupHelper...

  • C#教程之C# 判断字符串为空的几种办法 日期:2017-07-01 22:27:35 点击:116 好评:0

    1. 三种常用的字符串判空串方法: Length法:bool isEmpty = (str.Length == 0); Empty法:bool isEmpty = (str == String.Empty); General法:bool isEmpty = (str == ); 2. 深入内部机制: 要探讨这三种方法的内部机制...

  • C#教程之C#对XML文件的各种操作实现方法 日期:2017-07-01 22:27:05 点击:94 好评:0

    XML:Extensible Markup Language(可扩展标记语言)的缩写,是用来定义其它语言的一种元语言,其前身是SGML(Standard Generalized Markup Language,标准通用标记语言)。它没有标签集(tag set),也没...

推荐内容