随笔 - 227, 文章 - 1, 评论 - 32, 引用 - 5
数据加载中……

C# &.NetFramework

This portion mainly share some technical and my thoughts during my study of C# and commucate with all of you instested about C#
一种强行指定dll assembly读取其相应*.dll.config配置文件的方法(又名:如何创建.net 的DCOM)
     摘要: 如何指定dll assembly读取其相应*.dll.config配置文件,本文也演示了如何创建利用.net 创建一个DCOM  阅读全文

posted @ 2009-04-24 16:49 飞天舞者 阅读(648) | 评论 (0)  编辑

推荐:CLR 完全介绍-一篇讲解CLR内存回收机制以及常见的调试技巧的文章
     摘要: 推荐:CLR 完全介绍-一篇讲解CLR内存回收机制以及常见的调试技巧的文章  阅读全文

posted @ 2008-12-26 14:35 飞天舞者 阅读(55) | 评论 (0)  编辑

如何利用azMan (Authorization Manager) 实现 role-based的安全验证机制
     摘要: 如何利用azMan (Authorization Manager) 实现 role-based的安全验证机制  阅读全文

posted @ 2008-12-10 17:16 飞天舞者 阅读(130) | 评论 (0)  编辑

应用SynchronizationContext来实现对thread-safe UI的同步访问的2种不同Programming Model
     摘要: 一个简单的应用SynchronizationContext来实现对thread-safe UI的同步访问示例  阅读全文

posted @ 2008-12-02 15:33 飞天舞者 阅读(129) | 评论 (0)  编辑

如何自定义Attribute class并将其应用到相应的class
     摘要: 如何自定义Attribute class并将其应用到相应的class  阅读全文

posted @ 2008-12-01 13:32 飞天舞者 阅读(71) | 评论 (0)  编辑

利用windbg调试class type,value type以及MethodTable等强化C#的基本概念
     摘要: 本文通过windbg调试一个简单的程序,来清除说明.Net framework中class type,value type的内存分配方式的不同,以及object内部的重要组成MethodTable的作用  阅读全文

posted @ 2008-11-25 16:33 飞天舞者 阅读(97) | 评论 (0)  编辑

如何定义一个提供异步方法的类
     摘要: 本文介绍了如何定义一个提供异步方法的类 仅供参考哦  阅读全文

posted @ 2008-10-30 17:23 飞天舞者 阅读(43) | 评论 (0)  编辑

A typical Event definition using Microsoft's recommended design pattern.
     摘要: This artiche shows how to define an typical event due to Microsoft's recommended design pattern.  阅读全文

posted @ 2008-10-17 15:48 飞天舞者 阅读(26) | 评论 (0)  编辑

一个利用了异步处理,事件驱动,对象序列化等技术的类Parser完整代码示例
     摘要: 该source code运用了asynchrounization, event-drive和object serialization技术。这些技术在.Net程序开发中非常常见。  阅读全文

posted @ 2008-09-09 09:56 飞天舞者 阅读(46) | 评论 (0)  编辑

.net c# 序列化和反序列
     摘要: .net c# 序列化和反序列  阅读全文

posted @ 2008-08-10 12:04 飞天舞者 阅读(115) | 评论 (0)  编辑

数据结构C#实现-二叉查找树的创建,查找,以及各种递归(非递归)遍历算法
     摘要: 树是一种非常重要的数据结构,Binary Tree则是树型结构中应用最为广泛。本文给出了C#版本的二叉树的建立,查找,以及各种递归和非递归的遍历算法。  阅读全文

posted @ 2008-06-02 18:10 飞天舞者 阅读(409) | 评论 (0)  编辑

System.Collections深入探讨--如何创建自定义的集合类
     摘要: 在System.Collections namespace下面,存在两个class ,分别为ArrayList和 List ,都可以实现对象的数组队列。那么两者之间到底有什么区别呢?如何利用其创建自定义的集合类呢?  阅读全文

posted @ 2008-05-29 17:18 飞天舞者 阅读(219) | 评论 (0)  编辑

Garbage Collection Essence--.Net中Garbage Collection深入探讨
     摘要: 本文介绍了.Net Framework的垃圾回收机制,及其对managed resource和unmanaged resource的回收方法。  阅读全文

posted @ 2008-05-28 15:47 飞天舞者 阅读(112) | 评论 (0)  编辑

ASP.NET中将检索出的数据写入Exel形成Report的一种solution

posted @ 2008-05-26 16:40 飞天舞者 阅读(136) | 评论 (1)  编辑

C#中的安全策略

posted @ 2008-05-26 15:00 飞天舞者 阅读(103) | 评论 (0)  编辑

C#中不安全代码的编写和指针的应用

posted @ 2008-05-26 11:46 飞天舞者 阅读(339) | 评论 (0)  编辑

有关C#常见面试问题
     摘要: 如果你能全部正确回答,说明你对C#和.NET Framework有一定深度的了解  阅读全文

posted @ 2008-05-22 21:57 飞天舞者 阅读(193) | 评论 (0)  编辑

C#中值类型和引用类型(value type&Reference tyoe)深度探讨

posted @ 2008-05-22 16:55 飞天舞者 阅读(181) | 评论 (0)  编辑

Some normal compiling and debugging commands for C# 常见C#调试和编译命令

posted @ 2008-05-21 11:51 飞天舞者 阅读(57) | 评论 (0)  编辑

Garbage Collection Mechnism concepts 垃圾回收机制简介

posted @ 2008-04-28 16:15 飞天舞者 阅读(78) | 评论 (1)  编辑

Interface functionality&Importance接口的功能和重要性

posted @ 2008-04-24 17:33 飞天舞者 阅读(26) | 评论 (0)  编辑

what's the differences between readonly & const in C# 在C#中readonly和const的区别

posted @ 2008-04-24 15:46 飞天舞者 阅读(111) | 评论 (1)  编辑

ILDASm.exe IL反编译器- a useful tool to look inside the module/dll construct.

posted @ 2008-04-23 17:56 飞天舞者 阅读(151) | 评论 (0)  编辑

Assembly Essence-- 程序集深入探讨:程序集结构及部署
     摘要: 深入介绍了Assembly的内部机构,Assembly的两种部署方式等  阅读全文

posted @ 2008-04-23 17:21 飞天舞者 阅读(105) | 评论 (0)  编辑

how to sign an assembly with a strong name & how to create a pair key怎样通过强名给程序集签名以及如何创建钥匙对?
     摘要: 什么是Strong name?怎样通过Strong name给Assembly进行digital signature?  阅读全文

posted @ 2008-04-23 16:40 飞天舞者 阅读(434) | 评论 (0)  编辑

the Differences between abstract class & interface in C#接口和抽象类的区别

posted @ 2008-04-23 10:14 飞天舞者 阅读(134) | 评论 (0)  编辑

Data Contract of WCFWCF之数据协议

posted @ 2008-04-22 11:01 飞天舞者 阅读(91) | 评论 (1)  编辑

C#2.0中的泛型基础介绍

posted @ 2008-04-18 14:40 飞天舞者 阅读(59) | 评论 (0)  编辑

How to get MetaData on client side in WCF?如何在客户端获取WCF service的元数据

posted @ 2008-04-18 10:15 飞天舞者 阅读(81) | 评论 (0)  编辑

Operation Overloading in WCF

posted @ 2008-04-17 16:52 飞天舞者 阅读(35) | 评论 (0)  编辑

Endpoint-Contracts

posted @ 2008-04-16 11:27 飞天舞者 阅读(10) | 评论 (0)  编辑

Endpoint--Binding

posted @ 2008-04-16 10:57 飞天舞者 阅读(40) | 评论 (0)  编辑

Endpoint--Address

posted @ 2008-04-16 09:57 飞天舞者 阅读(103) | 评论 (0)  编辑

Thread Basics-- using Timer to trigger Event at a specified internals

posted @ 2008-04-07 12:19 飞天舞者 阅读(66) | 评论 (0)  编辑

Managed Code(托管代码) in .NetFramework

posted @ 2008-04-02 14:05 飞天舞者 阅读(37) | 评论 (0)  编辑

Thread Basics(thread synchronization&Asynchronization) -part two

posted @ 2008-04-01 13:41 飞天舞者 阅读(75) | 评论 (1)  编辑

Tread Basics in C#-part one

posted @ 2008-04-01 10:13 飞天舞者 阅读(229) | 评论 (0)  编辑

Event Mechanism in C#

posted @ 2008-03-31 16:02 飞天舞者 阅读(25) | 评论 (0)  编辑

如何给MSMQ发送Message (local computer | remote computer)
     摘要: MSMQ可以使得在不同计算机的application之间异步或者同步通讯,而且MSMQ不要求message的发送或者接收端的网络状态,即可以是offline的状态,也可以是online,而MSMQ service会自动检测消息接受或者目标端的状态。MSMQ可以发送各种各样的消息,简单到普通文本,再到transactional message,或者是大型对象的message均可。本文介绍了几种不同类型的消息发送和接收。  阅读全文

posted @ 2008-03-31 09:31 飞天舞者 阅读(220) | 评论 (0)  编辑

C++的四种cast操作符的区别

posted @ 2008-02-20 10:51 飞天舞者 阅读(168) | 评论 (0)  编辑

tips for private constructor

posted @ 2008-01-08 16:59 飞天舞者 阅读(20) | 评论 (0)  编辑

static and instance member

posted @ 2008-01-08 16:58 飞天舞者 阅读(31) | 评论 (0)  编辑

some tips for the keyword of new

posted @ 2008-01-08 16:56 飞天舞者 阅读(12) | 评论 (0)  编辑

all Key Word of C#

posted @ 2008-01-08 16:55 飞天舞者 阅读(18) | 评论 (0)  编辑

populate Dll from cs file

posted @ 2008-01-08 16:54 飞天舞者 阅读(14) | 评论 (0)  编辑

read file to database

posted @ 2008-01-08 16:53 飞天舞者 阅读(17) | 评论 (0)  编辑

what is strong name?

posted @ 2008-01-04 21:44 飞天舞者 阅读(24) | 评论 (0)  编辑

to read and write the regeister of windows OS

posted @ 2008-01-04 08:27 飞天舞者 阅读(15) | 评论 (0)  编辑

use StreamWrite to write the data to a file ,such as html,xml,txt,ect..;

posted @ 2008-01-04 08:23 飞天舞者 阅读(30) | 评论 (0)  编辑

For more information about me, feel free email to me winston.he@hotmail.com