0
votes
Which operating systems come with .net?
Vista is the only Microsoft DESKTOP operating system that comes with a version of .NET preinstalled. The version installed on Vista is .NET 3.0. Windows XP SP2 does NOT include any version of .NET …
0
votes
How to catch ALL exceptions/crashes in a .NET app
Be aware that catching these unhandled exceptions can change the security requirements of your application. Your application may stop running correctly under certain contexts (when run from a netwo …
-1
votes
How often do you use System.Component.BackgroundWorker in your UIs ? (if ever)
My biggest issue with the background worker class is that there really is no way to know when the worker has finished due to cancellation. The BackgroundWorker does not expose the thread it uses so …
2
votes
Is .NET a write once, run anywhere (WORA) platform like Java claims to be?
I don't think the official "intention" of .NET was WORA. I think that you could safely say that .NET was designed so that it would always run on future MS OS's. But there is nothing that precludes …
