Sign In
Junfeng Zhang's Windows Programming Notes
Win32, Fusion, CLR, .Net Framework, and others
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NetFramework
Debugging
Fusion
General
Others
Pages
Troubleshooting
Vista
Win32
Archive
Archives
July 2009
(1)
May 2009
(1)
March 2009
(1)
February 2009
(1)
December 2008
(2)
November 2008
(1)
August 2008
(2)
July 2008
(2)
June 2008
(2)
April 2008
(4)
March 2008
(2)
February 2008
(4)
January 2008
(1)
November 2007
(3)
October 2007
(1)
September 2007
(1)
August 2007
(5)
July 2007
(9)
June 2007
(3)
April 2007
(2)
March 2007
(3)
February 2007
(1)
January 2007
(2)
December 2006
(2)
November 2006
(4)
October 2006
(6)
September 2006
(5)
August 2006
(8)
July 2006
(2)
May 2006
(2)
April 2006
(12)
March 2006
(9)
February 2006
(5)
January 2006
(2)
December 2005
(10)
November 2005
(7)
October 2005
(2)
September 2005
(3)
August 2005
(1)
July 2005
(6)
June 2005
(8)
May 2005
(17)
April 2005
(9)
March 2005
(6)
February 2005
(9)
December 2004
(7)
November 2004
(12)
October 2004
(16)
September 2004
(16)
August 2004
(15)
July 2004
(10)
May 2004
(6)
April 2004
(14)
March 2004
(19)
February 2004
(39)
January 2004
(6)
November, 2004
MSDN Blogs
>
Junfeng Zhang's Windows Programming Notes
>
November, 2004
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Junfeng Zhang's Windows Programming Notes
Framework Unification Policy Change in .Net framework 2.0
Posted
over 8 years ago
by
Junfeng Zhang
4
Comments
Alan discussed Unification Policy in detail in his blog. Unification Policy http://blogs.msdn.com/alanshi/archive/2004/02/15/73244.aspx Unification Policy is first introduced in v1.1. The unification policy's behavior is to move every assembly reference...
Junfeng Zhang's Windows Programming Notes
CLR in Channel 9
Posted
over 8 years ago
by
Junfeng Zhang
3
Comments
Channel9 team did a two part interview for CLR team. The video is online at channel9.msdn.com. Jason Zander - Tour of the .NET CLR team http://channel9.msdn.com/ShowPost.aspx?PostID=29506 The .NET CLR Team Tour, Part II http://channel9.msdn.com/ShowPost...
Junfeng Zhang's Windows Programming Notes
Creating a publisher policy
Posted
over 8 years ago
by
Junfeng Zhang
0
Comments
MSDN documented how to create a publisher policy http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconcreatingpublisherpolicyfile.asp Basically you run al.exe with the "/link" option. The generated publisher policy assembly...
Junfeng Zhang's Windows Programming Notes
Less is more
Posted
over 8 years ago
by
Junfeng Zhang
2
Comments
Brad Abrams reports four less dlls loaded in Whidbey than in Everett for his helloworld application. *VERY* poor man's profiler The four dlls are: D:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\fusion.dll D:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorsn...
Junfeng Zhang's Windows Programming Notes
System.EnterpriseSe#?
Posted
over 8 years ago
by
Junfeng Zhang
4
Comments
If you are brave enough to look at Whidbey's native image cache, you will see some odd directories ended with '#'. C:\WINDOWS\assembly\NativeImages_v2.0.40607_32>dir *# Volume in drive C has no label. Volume Serial Number is 685B-4400 Directory of...
Junfeng Zhang's Windows Programming Notes
Codebase hint in config files
Posted
over 8 years ago
by
Junfeng Zhang
4
Comments
If your assemblies cannot be found by the standard fusion probing logic , you have two options: 1. Hook up AssemblyResolve event. 2. Specify a codebase hint in config files. The syntax for specifying codebase hint in a config file is in MSDN http://msdn...
Junfeng Zhang's Windows Programming Notes
Mscorlib.ni.dll
Posted
over 8 years ago
by
Junfeng Zhang
2
Comments
If you are using Whidbey, you may notice a dll named mscorlib.ni.dll is loaded in every managed application. It is the native image of mscorlib.dll. Makes perfect sense, right? Except in v1.0/v1.1, mscorlib's native image is still mscorlib.dll. So why...
Junfeng Zhang's Windows Programming Notes
You don't want to initialize global variables
Posted
over 8 years ago
by
Junfeng Zhang
2
Comments
** This is not a .Net blog ** According to C-FAQs, global variables are guaranteed to start out as zero. http://www.faqs.org/faqs/C-faq/faq/index.html 1.30: What am I allowed to assume about the initial values of variables which are not explicitly initialized...
Junfeng Zhang's Windows Programming Notes
Single Servicing
Posted
over 8 years ago
by
Junfeng Zhang
21
Comments
What is Single Servicing? Single Servicing is that when you fix a bug in your component, you drop a single binary with the fix into customer's machine, everyone using your component automatically get the fix. Sounds easy. But in reality it is much harder...
Junfeng Zhang's Windows Programming Notes
Programming Legends Debate .Net, J2EE
Posted
over 8 years ago
by
Junfeng Zhang
0
Comments
Interesting read from eweek.com Programming Legends Debate .Net, J2EE http://www.eweek.com/article2/0,1759,1699480,00.asp Source: http://www.theserverside.net http://www.theserverside.net/news/thread.tss?thread_id=29747
Junfeng Zhang's Windows Programming Notes
Assembly.LoadFrom/LoadFile/Load(byte[]) prefers GAC
Posted
over 8 years ago
by
Junfeng Zhang
12
Comments
Starting in Whidbey beta2, for Assembly.LoadFrom/LoadFile/Load(byte[]) , if there is an assembly in GAC with exactly the same assembly identity, we will return the one in GAC. ReflectionOnlyLoad and ReflectionOnlyLoadFrom APIs are not affected. C:\>more...
Junfeng Zhang's Windows Programming Notes
Windows XP Look & Feel with manifest
Posted
over 8 years ago
by
Junfeng Zhang
6
Comments
Windows XP has a new Common Controls library comctl32.dll version 6, which implements XP's look & feel. comctl32.dll version 6 is a side by side assembly deployed to %windir%\WinSxs (the equavalent of GAC in Fusion/Win32). For compatibility reason...
Page 1 of 1 (12 items)