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

我的网站

汇编语言 软件工程 C/C++语言编程 机器人编程 算法 C#编程 vb .net教程 Java教程 VBnet 移动开发 c#教程
当前位置: 主页 > 编程开发 >
  • vb教程之VB让程序在后台运行 日期:2017-06-30 09:51:07 点击:183 好评:0

    比如说,我们在表单上设置了一个计时器控件,这个定时器的任务就是在表单上显示当前的时间,同时设置当程序运行时启动定时器。程序运行后,当前的时间将在表单上实时地显示出...

  • C#教程之C#访问应用程序配置文件的方法 日期:2017-06-29 20:21:14 点击:132 好评:0

    App.config中写(注意C#中的应用程序配置文件名不能修改) 复制代码 代码如下: ?xml version=1.0 encoding=utf-8 ? configuration connectionStrings add name=URL connectionString=https://www.hao123.com/ add name=IP connec...

  • C#教程之C#读写文件的方法汇总 日期:2017-06-29 20:20:42 点击:68 好评:0

    1、使用FileStream读写文件 文件头: 复制代码 代码如下: using System; using System.Collections.Generic; using System.Text; using System.IO; 读文件核心代码: 复制代码 代码如下: byte[] byData = new byte[100];...

  • C#教程之C#计算代码执行时间的方法 日期:2017-06-29 20:20:17 点击:181 好评:0

    最近遇到一个模块其执行时间非常短,但是调用频率非常高。精确计算其运算时间对于提高程序整体效率来说非常重要。 在我刚刚接触.Net时,也曾经想要测试一下自己写的程序的运行...

  • C#教程之C# 动画窗体(AnimateWindow)的小例子 日期:2017-06-29 20:19:55 点击:178 好评:0

    代码如下: using System; using System.Runtime.InteropServices; using System.Windows.Forms; namespace WinFormTitle { public partial class FormTitle : Form { [DllImport(user32.dll, EntryPoint = AnimateWindow)] private static extern bool An...

  • 代码如下: using System; using System.Runtime.InteropServi 日期:2017-06-29 20:19:35 点击:51 好评:0

    代码如下: private void button1_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(this.textBox1.Text.Trim())) { MessageBox.Show(请输入需要转换的信息!); return; } string content = textBox1.Text; Hashtable hints= new...

  • C#教程之.C# 动画窗体(AnimateWindow)的小例子 日期:2017-06-29 20:19:15 点击:186 好评:0

    代码如下: using System; using System.Runtime.InteropServices; using System.Windows.Forms; namespace WinFormTitle { public partial class FormTitle : Form { [DllImport(user32.dll, EntryPoint = AnimateWindow)] private static extern bool An...

  • C#教程之C# zxing二维码写入的实例代码 日期:2017-06-29 20:18:54 点击:53 好评:0

    代码如下: private void button1_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(this.textBox1.Text.Trim())) { MessageBox.Show(请输入需要转换的信息!); return; } string content = textBox1.Text; Hashtable hints= new...

  • C#教程之c#判断输入的是不是数字的小例子 日期:2017-06-29 20:18:33 点击:66 好评:0

    代码如下: public bool isnumeric(string str) { char[] ch=new char[str.Length]; ch=str.ToCharArray(); for (int i = 0; i ch.Length;i++ ) { if (ch[i] 48 || ch[i] 57) { return false; } } return true; }...

  • C#教程之c# 深拷贝与浅拷贝的区别分析及实例 日期:2017-06-29 20:18:04 点击:147 好评:0

    深拷贝是指源对象与拷贝对象互相独立,其中任何一个对象的改动都不会对另外一个对象造成影响。举个例子,一个人名叫张三,后来用他克隆(假设法律允许)了另外一个人,叫李四...

推荐内容