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 飞天舞者 阅读(1267) | 评论 (0) 编辑

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

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

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

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

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

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

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

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

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

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

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

posted @ 2008-10-30 17:23 飞天舞者 阅读(76) | 评论 (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 飞天舞者 阅读(90) | 评论 (0) 编辑

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

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

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

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

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

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

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

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

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

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

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

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

C#中的安全策略

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

posted @ 2008-04-23 17:21 飞天舞者 阅读(123) | 评论 (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 飞天舞者 阅读(593) | 评论 (0) 编辑

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

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

Data Contract of WCFWCF之数据协议

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

C#2.0中的泛型基础介绍

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

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

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

Operation Overloading in WCF

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

Endpoint-Contracts

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

Endpoint--Binding

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

Endpoint--Address

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

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

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

Thread Basics(thread synchronization&Asynchronization) -part two

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

Tread Basics in C#-part one

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

Event Mechanism in C#

posted @ 2008-03-31 16:02 飞天舞者 阅读(31) | 评论 (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 飞天舞者 阅读(331) | 评论 (0) 编辑

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

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

tips for private constructor

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

all Key Word of C#

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

导航

<2012年2月>
2930311234
567891011
12131415161718
19202122232425
26272829123
45678910

公告

昵称:飞天舞者
园龄:4年1个月
粉丝:2
关注:0

搜索

 
 

常用链接

我的标签

随笔分类

随笔档案

相册

积分与排名

  • 积分 - 49362
  • 排名 - 2147

最新评论

阅读排行榜

评论排行榜

推荐排行榜

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