| Thread | Last Post | Replies |
|
| ExecutionEngineException hosting in IE | 15 Dec 2003 14:56 GMT | 1 |
I'm having some problems running an application hosted within IE that do not appear to occur when running normally. I start the application from another managed app with the
|
| Difference between Monitor and Mutex | 15 Dec 2003 03:07 GMT | 4 |
What's the difference, from the OS point of view, between Monitors and Mutexes? I'm almost sure that the Mutex object is a wrapper to the native win32 mutex (if I create a named managed Mutex, I can see it with winobj)
|
| CreateInstanceAndUnwrap returns a MarshalByRefObject | 13 Dec 2003 22:54 GMT | 2 |
I've been struggling with this for a while to no avail. I have an internal application which uses remoting to launch AppDomains and load/unload user assemblies. I'm trying to integrate it with Visual Studio .NET as an add-
|
| .NET executable load process | 12 Dec 2003 11:31 GMT | 2 |
Is there a good in depth (web) reference describing the process that the CLR goes through when it runs a .NET executable. In particular we are interested in when and how the .exe file is checked and loaded into memory and all the assemblies (both
|
| How does AssemblyLoad work with referenced assemblies? | 12 Dec 2003 03:13 GMT | 5 |
What I am trying to do: I want to write a regression test program that will automatically select and use a specific version of a DLL, based on criteria it won't know till the test program starts (for instance, what was the last version successfully tested for
|
| Unable to use breakpoint in debugger | 11 Dec 2003 18:19 GMT | 2 |
When I run debug with a breakpoint set the breakpoint appears with a "?". When I place the mouse pointer over the breakpoint the following information is provided: "The breakpoint will not currently be hit. No symbols have
|
| Bug in System.Collections.Specialized.BitVector32 | 11 Dec 2003 12:29 GMT | 4 |
I seem to have found a bug in the BitVector32 structure. Programatically, it is not possible to check the value of the highest bit (32nd) using BitVector32.get_Item(int). Setting the bit works as expected.
|
| TypeloadException with static method | 10 Dec 2003 19:18 GMT | 1 |
my problem is as follows: abstract class A { abstract Foo();
|
| How to find which window the mouse is in | 10 Dec 2003 08:40 GMT | 1 |
In Visual Basic .Net, I am trying to figure out how to get a reference to the open window that the mouse is in. Suppose I select (highlight) text on a web page shown on an Internet Explorer window, and then click on a toolbar
|
| Compiler Trick? | 09 Dec 2003 13:17 GMT | 10 |
I have seen a very strange piece of code being generated by the C# compiler and was hoping someone might be able to shed some light on it. I've reduced the example down to a bare minimum and I am using the .NET 1.1 framework. Here is the C# code:
|
| Clarification of ECMA spec and C# execptions | 09 Dec 2003 01:49 GMT | 8 |
The questions I have may be obvious and perhaps somewhat nitpicky, but I'd like some clarification so I know that I am not misinterpreting anything. In Partition I, section 12.4.2, Exception handling, it states... "There are four kinds of handlers for protected blocks. A single ...
|
| Hosting the CLR | 08 Dec 2003 15:34 GMT | 2 |
I posted this message on microsoft.public.dotnet.framework.windowsforms since the original thread related to an error that results when trying to show a form when I create it on a worker thread. (Error creating window handle.) The problem only occurs when I manually host the CLR and ...
|
| Valuetypes vs. Reference Types | 08 Dec 2003 05:34 GMT | 2 |
since value types don't have to be dereferenced, they're supposed to be faster than reference types (exceptions aside). To prove this, I developed a testprg in VB and to my surprise and the opposite proofed! I looked at the IML-Code and noticed, that the VB-compiler "invented" an ...
|
| Create a delegate from MethodInfo | 07 Dec 2003 04:23 GMT | 1 |
I'm using the Compact Framework and I want to create an instance of a delegate from a MethodInfo but Delegate.CreateDelegate() isn't supported on the CF. So can anyone tell me how to do this "long hand" in C#. I'm using a custom
|
| Dispose and Finalize | 06 Dec 2003 05:25 GMT | 9 |
If I have an object which is about to become finalized, and this object has instantiated several other objects during its lifetime, how can I be sure (or find out) that those objects haven't been killed by the GC, already? Take, for example, a class that uses a FileStream-object ...
|