Showing archive results for December 18, 2006

Dec 18, 2006
Post comments count0
Post likes count0

Some call it context, others call it reference data, but whatever it is, it's yours

Raymond Chen
Raymond Chen

Different functions call it different things. calls it . calls it reference data. calls it . just calls it a parameter! But whatever its name is, it means the same thing: It's a value the function doesn't care about. All the function does is hand that value back to you. What the value means is up to you. What if you need to pass more context ...

Code
Dec 18, 2006
Post comments count0
Post likes count0

Do not write in-process shell extensions in managed code

Raymond Chen
Raymond Chen

Jesse Kaplan, one of the CLR program managers, explains why you shouldn't write in-process shell extensions in managed code. The short version is that doing so introduces a CLR version dependency which may conflict with the CLR version expected by the host process. Remember that shell extensions are injected into all processes that use the shell ...

Code