.NET Blog

Free. Cross-platform. Open source. A developer platform for building all your apps.

DHTML Editing Control and IE7+

The webdevtools team has historically owned a control that shipped with IE5.5 and above.  This control is the DHTML Editing Control.  In order to improve security in IE7+, we took a hard look at this control and decided to remove it from Vista and IE7+.  A post I made yesterday on the IE blog talks about this in detail.&...

Suspending and resuming threads for GC

First of all, suspension and resumption of threads is not really part of the GC. GC calls functions to do the suspension and the resumption as a service provided in the CLR. Other components in the CLR also use this service such as the debugger implementation. But it’s true that suspending and resuming because of the GC is the most ...
Comments are closed.0 2
.NET

When memory is running low…

When I say memory I mean physical memory. Let’s assume that you have enough virtual memory space. When the physical memory gets low you may start getting OOMs or start paging. You can experiment and see how you can avoid getting into the low memory situation but sometimes it’s hard to predict and hard to test all scenarios your app can get...
Comments are closed.0 1
.NET