Does In-Proc SxS open to extend shell in managed code?

The recommendation was "Do not write internal shell extensions in managed code."

But with the .NET Framework 4 and In-Process Side-by-Side, the main reason not to write shell extensions in managed code should be allowed.

With that said, I have three questions.

  • Now can I write shell extensions in managed code?
  • What problems can arise when writing shell extensions in managed code?
  • What could be the reason for writing shell extensions in unmanaged code?
+5
source share
3 answers

.NET 4. .NET 3.5 , in-proc .

+2
  • , .
  • - - , , .., . , , , , .
  • The only reason is that you prefer or are forced to use an unmanageable language.

Give up on EZNamespaceExtensions.Net , which fixes # 2 above, as well as the time it takes to develop namespace extensions in general (whether in managed or unmanaged).

+3
source

All Articles