C#编程资料,编程资料分享-爱资料
分类:
Questioning C# (三)

Questioning C# (三)

栏目分类:C# 浏览次数:181 发布时间:2015-09-26

Web开发编程软件 界面设计软件! Q:今天我的侄子问我1+1等于多少,我说当然是2咯,他很狡猾的笑着说我错了,然后我问他为什么错,他瞄了我一眼说:“根本无法确定一个唯一的答案...

TAG:
C#设计模式讨论——开篇闲话

C#设计模式讨论——开篇闲话

栏目分类:C# 浏览次数:218 发布时间:2015-09-26

??????? 设计模式,基本上是一个经验总结与策略选择的过程。开发者将开发过程中可重复的设计技术手段总结出来,形成模式,然后在适用的场合应用它们。 ??????? 作为一门新生的语言...

TAG:
C#分析数据库结构,使用XSL模板自动生成代码

C#分析数据库结构,使用XSL模板自动生成代码

栏目分类:C# 浏览次数:206 发布时间:2015-09-26

阿里西西站长工具大全,最全的查询工具,加密工具,换算工具! html head TITLE分析数据库结构,自动生成代码/TITLE meta http-equiv=Content-Type content=text/html; charset=gb2312 /head frameset cols=237,767...

TAG:
C#2.0的特性

C#2.0的特性

栏目分类:C# 浏览次数:189 发布时间:2015-09-26

alixixi建站模板素材大全 字体,图标,韩国模板! C#2.0简介 C# 2.0引入了很多语言扩展,最重要的就是泛型(Generics)、匿名方法(Anonymous Methods)、迭代器(Iterators)和不完全类型(Partial...

TAG:
C#学习杂记

C#学习杂记

栏目分类:C# 浏览次数:254 发布时间:2015-09-26

.NET技术学习笔记: 因为项目需要开始突击.NET,今天主要了解了一下C#语法和.NET框架基础,因为有JAVA开发经验所以看起来倒也不是很费劲,就是不知道实际应用时会怎么样。 今天的笔...

TAG:
My Builder in C#

My Builder in C#

栏目分类:C# 浏览次数:261 发布时间:2015-09-26

//MyBuilder using System; using System.Collections; ///////////////////////product/////////////////////// class HomePage //Fields private string pagetype; private string samplecode; private Hashtable parts=new Hashtable(); //Construcrors pu...

TAG:
c#范型体验1

c#范型体验1

栏目分类:C# 浏览次数:239 发布时间:2015-09-26

WEB开发专业社区,阿里西西WEB开发。 写了点代码,初次体验到C#范型的魅力 class Program static void WriteSometingT(T x,T y) if (typeof(T) == typeof(int)) Console.WriteLine(x); if (typeof(T) == typeof(string)) Conso...

TAG:
My FactoryMethod in C#

My FactoryMethod in C#

栏目分类:C# 浏览次数:211 发布时间:2015-09-26

//MyFactoryMethod using System; using System.Collections; //SinglePage class,which build the at last product,part element //----top class abstract class SinglePage ; //----element1 class RegisterPage:SinglePage ; //----element2 class LoginP...

TAG:
My Prototype in C#

My Prototype in C#

栏目分类:C# 浏览次数:235 发布时间:2015-09-26

本文来源于阿里西西WEB开发社区http://www.alixixi.com收集整理,欢迎访问。 //MyPrototype using System; using System.Collections; //abstract PageStylePrototype Class 'Prototype abstract class PageStylePrototype //Fields p...

TAG:
My Singleton in C#

My Singleton in C#

栏目分类:C# 浏览次数:220 发布时间:2015-09-26

//MySingleton using System; //SingletonPage Class class SingletonPage //Fields protected static SingletonPage checkoutpage; //Constructor is protected to ensure Singleton protected SingletonPage() Console.WriteLine(if you see this line,then...

TAG: