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

我的网站

汇编语言 软件工程 C/C++语言编程 机器人编程 算法 C#编程 vb .net教程 Java教程 VBnet 移动开发 c#教程
当前位置: 主页 > 编程开发 >
  • C#教程之C# 多态性的深入理解 日期:2017-07-05 20:15:08 点击:150 好评:0

    MSDN 上面的定义:通过继承,一个类可以有多种类型:可以用作它自己的类型,任何基类型,或者在实现接口时用作任何接口的类型。 从两个方面来说明多态 1.在运行时,方法参数和集合...

  • C#教程之使用Deflate算法对文件进行压缩与解压缩 日期:2017-07-05 20:14:47 点击:173 好评:0

    如下所示: 复制代码 代码如下: static void Main() { string path = @D:\Practise\IO\Compress; string deCompressPath = @D:\Practise\IO\DeCompress; DirectoryInfo dir = new DirectoryInfo(path); foreach (FileInfo fi in dir.GetFiles())...

  • C#教程之将数组中指定数量的元素移动数组后面的 日期:2017-07-05 20:14:27 点击:51 好评:0

    如下所示: 复制代码 代码如下: static void Main() { int[] array = { 1, 2, 3, 4, 5, 6, 7 }; MoveNumberArrayToEnd(array, 3); } static void MoveNumberArrayToEndT(IListT arrayList, int num) { if (arrayList.Count = 0 || arrayList.Coun...

  • C#教程之c#实现输出本月的月历 日期:2017-07-05 20:14:06 点击:163 好评:0

    格式要求: 复制代码 代码如下: SU MO TU WE TH FR SA 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 代码: 复制代码 代码如下: class Interview1 { static void Main() { PrintCale...

  • C#教程之深入理解C#中常见的委托 日期:2017-07-05 20:13:00 点击:57 好评:0

    一提到委托,浮现在我们脑海中的大概是听的最多的就是类似C++的函数指针吧,呵呵,至少我的第一个反应是这样的。 关于委托的定义和使用,已经有诸多的人讲解过,并且讲解细致入...

  • C#教程之深入c# Func委托的详解 日期:2017-07-05 20:12:38 点击:164 好评:0

    如下所示: 复制代码 代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Anonymous_Lam { delegate string ConvertMethod(string Method); class Lambda_Fun { static void Main() {...

  • C#教程之C#组合函数的使用详解 日期:2017-07-05 20:12:13 点击:78 好评:0

    如下所示: 复制代码 代码如下: using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Class1 { static string[] str = { A, B, C, D, E }; static void Main() { Dictionarystring, int...

  • C#教程之深入反射生成数组的详解 日期:2017-07-05 20:11:49 点击:50 好评:0

    今天在论坛有人问怎样反射生成数组,突然又来了兴致,决定试试 其实反射数组最难无非就是数组的初始化和数组的索引了,那么,如何初始化一个数组呢,数组是没有构造函数的,那...

  • C#教程之C#中is与As运算符号的使用详解 日期:2017-07-05 20:11:26 点击:85 好评:0

    代码如下: using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class IsOrAsClass { class Animal { public void Eat() { Console.WriteLine(Eating...); } public override string ToString() { retu...

  • C#教程之深入IComparable与IComparer的排序实例详解 日期:2017-07-05 20:10:58 点击:191 好评:0

    如下所示: 复制代码 代码如下: using System; using System.Collections.Generic; using System.Text; using System.Collections; namespace hgoApp { class Comparer { static void Main() { Employee[] Employees = new Employee[5]; Employee...

推荐内容