C#编程资料,编程资料分享-爱资料
分类:
Observer Design Pattern in C#!

Observer Design Pattern in C#!

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

This article describes a very important and one of the powerful tools in C#. This is based on a famous design pattern called Observer. Observer design pattern dictates what is called as subscriber-publisher paradigm. An example will make it...

TAG:
使用C#开发COM+组件

使用C#开发COM+组件

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

国内最大的酷站演示中心! 点击看优秀酷站设计... .NET技术是微软大力推广的下一代平台技术,自从.NET技术架构Beta2版本的正式发布,此项技术也逐渐走向成熟和稳定。按照微软的平台系...

TAG:
C# 和 API

C# 和 API

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

API (Application Programming Interface) is a set of commands, which interfaces the programs with the processors. The most commonly used set of external procedures are those that make up Microsoft Windows itself. The Windows API contains tho...

TAG:
C#学习笔记之五(ADO.net)

C#学习笔记之五(ADO.net)

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

WEB开发专业社区,阿里西西WEB开发。 ADO.net //Overview Data--DataReader--Data Provider-- DataSet Data Provider: Connection, Command, DataAdapter DataSet: DataRelationCollection, DataTable collection(including DataTable)) DataTa...

TAG:
C#学习笔记之四(Attribute, Reflection, Thread, Thread Synchronization)

C#学习笔记之四(Attribute, Reflection, Thread, Thread Synchronization)

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

Atributes: //can add metadata in program, It store with the program //using ILDasm to check atributes //usage [CodeReviewAttribute(08/08/2005, Allan Zhang, Comment = That is a Attribute test)] class Employee //define target and atr [Attribu...

TAG:
C#学习笔记之二(stack, queue, string, HashTable,StringBuilder, Regular Expresstion)

C#学习笔记之二(stack, queue, string, HashTable,StringBuilder, Regular Expresstion)

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

本文来源于阿里西西WEB开发社区http://www.alixixi.com收集整理,欢迎访问。 Queue: Enqueue() Dequeue() Peek() //only get first element, not delete it Stack: Count() Clear() Peek() Pop() Push() CopyTo(array, offset) //copy...

TAG:
C#学习笔记之三(delegate, event, Make XML document )

C#学习笔记之三(delegate, event, Make XML document )

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

Delegates: // 1. nomal delegates = create before run, in main //declare class Employee; class Couple public delegate bool Reverse(object lhs, object rhs); SetOrder(Reverse the DelegatedFunction) //init Couple.Reverse employeeByID = new Coup...

TAG:
C#学习笔记之七(network I/O, Asynchonouse network I/O)

C#学习笔记之七(network I/O, Asynchonouse network I/O)

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

阿里西西下载中心 - 最新优秀源码下载 Network IO; //Server1 programm using System.Net.Sockets; TcpListener tcpListener = new TcpListener(65000); tcpListener.Start(); for(;;) Socket clientSocket = tcpListener.AcceptSocket() if...

TAG:
C#学习笔记之八(Serialization, ActiveX Control)

C#学习笔记之八(Serialization, ActiveX Control)

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

Serialization: 1. use attribute // [serializable] 2. Formatter // BinaryFormatter binaryFormatter = new BinaryFormatter(); 3.[Noserialized] //example // if the data can generate based some data, then no need to serialize them. // overload t...

TAG:
C#中一些字符串操作的常用用法

C#中一些字符串操作的常用用法

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

本文来源于阿里西西WEB开发社区http://www.alixixi.com收集整理,欢迎访问。 //获得汉字的区位码 byte[] array = new byte[2]; array = System.Text.Encoding.Default.GetBytes(啊); int i1 = (short)(array[0] - '\0'); int...

TAG: