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

我的网站

汇编语言 软件工程 C/C++语言编程 机器人编程 算法 C#编程 vb .net教程 Java教程 VBnet 移动开发 c#教程
当前位置: 主页 > 编程开发 >
  • C#教程之C# 手动/自动保存图片的实例代码 日期:2017-06-29 19:49:20 点击:180 好评:0

    view plaincopy to clipboardprint? 复制代码 代码如下: //手动保存图片 private void saveBtn_Click(object sender, System.EventArgs e) { bool isSave = true; SaveFileDialog saveImageDialog = new SaveFileDialog(); saveImageDialog.Tit...

  • C#教程之WinForm DataGridView控件隔行变色的小例子 日期:2017-06-29 19:48:54 点击:183 好评:0

    代码如下: dgv.Rows[i].DefaultCellStyle.BackColor = System.Drawing.Color.White; 隔行变色 复制代码 代码如下: /// summary /// 隔行变色 /// /summary /// param name=dgv传入DataGridView控件名称/param public static void D...

  • C#教程之C#控制台输出进度和百分比的实例代码 日期:2017-06-29 19:48:30 点击:131 好评:0

    代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { bool isBreak = false; ConsoleColor colorBack = Console.Bac...

  • C#教程之自定义实现Json字符串向C#对象转变的方法 日期:2017-06-29 19:47:55 点击:182 好评:0

    这里使用Atrribute的方式实现了Json字符串向C#对象的转变。因为功能局限,此版本只是针对于Json字符串,如response:Hello,id:21231513,result:100,msg:OK.; 而不是Json数组。这里的Atrribute是作用在属性...

  • C#教程之C#实现的最短路径分析 日期:2017-06-29 19:47:20 点击:88 好评:0

    代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static int length = 6; static string[] shortedPath = new string[length]; static int noPath =...

  • C#教程之c# 删除所有的空文件夹的小例子 日期:2017-06-29 19:46:55 点击:187 好评:0

    代码如下: /// summary /// 删除掉空文件夹 /// 所有没有子文件系统的都将被删除 /// /summary /// param name=storagepath/param public static void KillEmptyDirectory(String storagepath) { DirectoryInfo dir = new Director...

  • C#教程之c# 删除所有的空文件夹的小例子 日期:2017-06-29 19:46:55 点击:187 好评:0

    代码如下: /// summary /// 删除掉空文件夹 /// 所有没有子文件系统的都将被删除 /// /summary /// param name=storagepath/param public static void KillEmptyDirectory(String storagepath) { DirectoryInfo dir = new Director...

  • C#教程之C#中Array与ArrayList用法及转换的方法 日期:2017-06-29 19:46:24 点击:193 好评:0

    ArrayList与Array的区别概述 ArrayList 是数组的复杂版本。ArrayList 类提供在大多数 Collections 类中提供但不在 Array 类中提供的一些功能。例如: Array 的容量是固定的,而 ArrayList 的容量是根据...

  • C#教程之c# 开机启动项的小例子 日期:2017-06-29 19:45:57 点击:169 好评:0

    代码如下: //路径, 添加开机启动/删除开机启动 public static void SetAutoRun(string fileName, bool isAutoRun) { RegistryKey reg = null; try { if (!System.IO.File.Exists(fileName)) throw new Exception(该文件不存在!); Str...

  • C#教程之C#索引器简单实例代码 日期:2017-06-29 19:45:21 点击:186 好评:0

    复制代码 代码如下: public class Fruit { string peach = a round juicy fruit that has a soft yellow or red skin and a large hard seed in the center, or the tree that this fruit grows on; string orange = a round fruit that has a thick...

推荐内容