| Thread | Last Post | Replies |
|
| Managed module | 09 Mar 2005 22:06 GMT | 1 |
How do I from unmanaged C++ detect if a .dll or .exe file is a managed module? regards Kjetil Kristoffer Solberg
|
| Why are static readonly objects checked in the GC? | 08 Mar 2005 15:37 GMT | 3 |
I recently noticed that static reaonly members of a class are checked in the GC and eventually pushed to the last possible generation. My question is: Why are these objects even checked in the GC? If they're static and reaonly, the references can never be reassigned, hence will
|
| reverse engineering | 08 Mar 2005 10:48 GMT | 5 |
I have been tossing around the idea of writing an app that can reverse engineer a dotnet project and produce uml sequence diagrams. Anyone here have an idea of the best way to accomplish this?
|
| Assembly.Load fails after assembly preloaded using Assembly.LoadFrom (v1.1.4322) | 08 Mar 2005 01:34 GMT | 5 |
I am creating a seperate appdomain to host assemblies having less than full trust. The second appdomain has a different ApplicationBase path then the host. I created a "DomainBroker" instance that implements MarshalByRefObject to instruct load and execute the less then full
|
| Adding a Generic Delegate to an Event at Runtime | 07 Mar 2005 20:20 GMT | 4 |
I have a Generic Value Type and I want to detect when the internal value changes. /////////////////////////////// public delegate void ValueTypeValidationHandler<T>(T oldValue, T newValue);
|
| Win32 API on C# | 07 Mar 2005 17:49 GMT | 6 |
I want to know if I could create a Win32 API on C# or VB.Net. If yes, I need to put some extra code or compile from a different way? I have a old Delphi application that needs to load my dll like a API using the function LoadLibrary ak DLLImport from C#. I tried using .Net ...
|
| Garbage Collection and Threads | 06 Mar 2005 18:04 GMT | 1 |
I am wondering what the CLR's garbage collector does with running threads when a garbage collection runs. I can see a strong argument for why all running threads are suspended while the GC runs. This has mostly to do with the fact that when the GC runs it compacts the managed ...
|
| exceptions index | 04 Mar 2005 14:59 GMT | 6 |
Where can I find a list over all the exceptions thrown by a certain class in the .NET framework?... for instance FileStream. /Andreas Zita
|
| "Stack Allocation" | 03 Mar 2005 18:03 GMT | 2 |
I have been looking into "stack allocation" as outlined by Maierhofer and Ertl in their paper Local Stack Allocation (http://scholar.google.com/url?sa=U&q=http://www.complang.tuwien.ac.at/papers/mai erhofer%26ertl98.ps.gz) recently, however the lack of instructions in the CLR for ...
|
| ECMA standard typo? | 03 Mar 2005 16:45 GMT | 2 |
In the Chapter 3 of the ECMA standard, it is specified at many instructions "See Section 1.5 for more details on how verification determines the type of the value loaded onto the stack". However, I do not really see something in Section 1.5 in this sense.
|
| When application is exiting,the CLR report an error | 03 Mar 2005 01:13 GMT | 2 |
After the main form closed,I call "Environment.Exit(0);" to terminate the application,but the CLR report an error. I call "Application.Exit();" ,then it shows a Win32 error dialog.Why?
|
| Setup error | 02 Mar 2005 17:23 GMT | 1 |
I am having application developed in vb.net At a time of closing main form, error report pops up that is 'failed to load resources from resource file please check your setup' Does anyone is having any idea about it.
|
| Differences in Invoke() | 02 Mar 2005 09:33 GMT | 4 |
What is the difference between ISynchronizeInvoke.Invoke and Control.Invoke as for example in aDelegate.Invoke() versus myControl.Invoke(aDelegate) ?
|
| AppDomain.Load MixedMode (MC++) Dll Problem | 02 Mar 2005 09:06 GMT | 1 |
I tried to load a mixedmode dll (MC++) with AppDomain.Load(Byte[] ) in a C# Client. During the Load Process I got the following Exception: System.IO.FileLoadException: Ausnahme von HRESULT: 0x80131019.
|