自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (6)
  • 问答 (1)
  • 收藏
  • 关注

原创 【.NET 学习笔记】修饰符

1. public: 任何代码均可以访问该方法2. protected: 只有派生的类型能访问该方法3. internal: 只能在包含它的Assembly中访问该方法,可以确保Assembly中的其他类可以访问他的成员,而其他公司编写的代码不能访问他们.4. private: 只能在它所属的类型中访问该方法5. protected internal: 只能在包含它的程序集和派生类

2008-03-18 19:42:00 414

转载 微软亚洲技术中心面试题

1.进程和线程的差别。线程是指进程内的一个执行单元,也是进程内的可调度实体.与进程的区别:(1)调度:线程作为调度和分配的基本单位,进程作为拥有资源的基本单位(2)并发性:不仅进程之间可以并发执行,同一个进程的多个线程之间也可并发执行(3)拥有资源:进程是拥有资源的一个独立单位,线程不拥有系统资源,但可以访问隶属于进程的资源.(4)系统开销:在创建或撤消进程时,由于系统都要为之分配和回收资源,导致

2008-03-05 22:30:00 526 1

原创 【.NET 学习笔记】Chapter.01 CLR的执行模型

1.1 将源代码编译成托管模块(1).使用支持CLR的任何语言编写源代码,然后通过使用对应的编译器来检查语法和分析源代码,无论使用哪种编译器,结果都是一个托管模块(Managed Module)。托管模块是一个标准的32位Microsoft Windows可移植执行体文件(PE32文件)或64位文件(PE32+),他们需要CLR才能运行。 (2).本地代码编译器生成的是特定CPU架构的专用代码

2008-03-03 22:42:00 543

MCTS.Exam 70-511.Windows Application Development with Microsoft .NET Framework

微软认证考试:70-511, Windows Application Development with Microsoft .NET Framework 4.2011

2011-04-29

Beginning WF Windows Workflow in .NET 4

Beginning WF will take you step by step through many of the useful applications of workflow technology. Along the way, you will: Create designer-based and code-based workflows Communicate between applications using workflow activities Implement SQL persistence with custom participants Create workflow extensions and custom activities Build applications that support long-running workflows Host workflows in WCF services

2010-05-19

microsoft uispy

The UI Spy tool enables developers and testers to view and interact with the user interface (UI) elements of an application. By viewing the application's UI hierarchical structure, property values, and raised events, developers and testers can verify that the UI they are creating is programmatically accessible to assistive technology devices such as screen readers. UI Spy uses the UI Automation libraries. UI Automation is the new accessibility framework for Microsoft Windows. Using UI Spy, developers and testers can check an application's level of accessibility by verifying the following: UI Automation property values for UI items. Control pattern implementation. UI Automation event information. Navigation and keyboard focus.

2010-03-21

Microsoft.Press.CLR.via.Csharp.3rd.Edition.Feb.2010

Jeffrey Richter 在他的博客中叙述了 CLR via C#第三版的主要内容,和改动。原本如下:(必要的地方加了翻译) Last week I submitted the reaming chapters for my new book. It is now being edited and should be available right around the time that Visual Studio 2010 launches (March 22, 2010). (注:上周他提交了他的书(可能是给出版社),估计会在VS2010发布的时候,一同上市) One place you can order it is here: http://www.amazon.com/CLR-via-C-Third-Pro-Developer/dp/0735627045 (注:Amazon已经可以预订了) I know that many people will ask me what are the differences between the 2nd edition and the 3rd edition and so I thought I'd create this blog post to address this. Overall, every chapter has been modified making the text clearer, fixing any known mistakes and I’ve added more 64-bit coverage as this hardware is becoming more commonplace. I' ve also embellished a lot of text to reflect new things that I've learned in the last 5 years since the previos edition of the book was published. In addtion, since the 2nd Edition of the book covered version 2.0 of the .NET Framework and C#, the new book adds coverage of versions 3.0, 3.5 and 4.0. (注:修改了部分章节的语言描述,叙述地更清楚一些。修改了关于 64位系统的一些错误。用了很多笔墨来介绍他最近5年的学习心得,书中也涵盖了.net 3.0,3.5,4.0的内容。) Also, I always thought I’d write a Threading Book showing how to properly architect software to build responsive and scalable applications and components in today’s world of multi-core computers. However, I decided to just include this other book’s content in the 3rd Edition of CLR via C# and so Part 5 of the book has five pretty lengthy chapters related to Threading. These chapters (like all chapters in the book) are very prescriptive. That is, I don’t just explain what is in the .NET Framework and how to use it. I explain when to use it and why as well as pitfalls associated with various constructs. I have written a lot of threading material over the past 20+ years and this is all new material presented in an all new way that I think will resonate well with software developers. The 2nd edition of CLR via C# had two chapters related to threading; the five new chapters contain a small part of that material but the new chapters are basically rewritten and add all of the new stuff that is being introduces with .NET 4.0. (注:此版第五部分中有5个很长的章节讲述线程。作者不仅解释 .NET框架的线程部分和如何使用这个,还讲述了什么时候使用和一些使用中的陷阱。作者在过去20多年中写了很多关于线程的文章,这次他将用这5章的篇幅做一个完整地,全新的阐述。新加的章节基本都是重新写过的,所有新修改的东西也都跟.NET 4.0联系起来了。) Below is the Table of Contents for CLR via C#, 3rd Edition and a brief description of what has been added to each chapter since the 2nd Edition. (下面是分章节的简要介绍了,Jeff相当厚道啊。我是很期待第三版。)

2010-02-20

Windows PowerShell 实战

Windows 环境所开发的 shell 及脚本语言技术,这项全新的技术提供了丰富的控制与自动化的系统管理能力;关于PowerShell参看易学易用的Windows PowerShell。

2009-11-28

人件2 中文版

人件 中文版 版本 2.0

2008-02-24

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除