| Thread | Last Post | Replies |
|
| ICodeCompiler Leaking File Handles in 1.1 FW? | 05 Dec 2003 16:44 GMT | 3 |
This code (in a containing class which is re-instantiated for the second compile) results in a generated executable that is stuck "in use" (can't be removed etc) until the process itself terminates. I've tried several detours, none of which help. Any suggestions, or is it a FW bug?
|
| Managed Heap | 04 Dec 2003 17:44 GMT | 5 |
simple question: does an AppDomain have one Managed Heap, or has every Application in the AppDomain it's own? Does anybody know source on the net about that? Thanks,
|
| CLR Profiler is not working with managed service | 04 Dec 2003 15:34 GMT | 5 |
I am trying to profile a managed window service and I am not having any luck. Here is what I am doing: 1) Click on file menu and choose Profile Service.
|
| Config-files | 04 Dec 2003 07:42 GMT | 1 |
Binding policy can happen at several levels : - Application-policy resolution (e.g. myapp.exe.config) - Publisher-policy resolution (installed in the GAC) - Administrator-policy resolution (machine.config located at
|
| CodeDOM: MemberAttributes.New in nested CodeTypeDeclaration | 03 Dec 2003 21:36 GMT | 1 |
I am trying to generate a class hierarchy like this: public class A { public class A.Helper { }
|
| Using the GetValue method of Reflection Types and obtaining local variables | 03 Dec 2003 18:29 GMT | 6 |
I am trying to scan an method or constructor at runtime for whatever local variables it may have using Reflection. So far my code looks basically like this methodInfo=stackFrame.GetMethod().GetType(); //Returns the appropriate
|
| Reflection.Emit problem | 03 Dec 2003 18:14 GMT | 1 |
I hope this is the right NG for this question. I got a problem generating IL via Reflection.Emit. I cannot generate the code for this simple class: class Class1
|
| Is it possible to install GAC at other location ? | 02 Dec 2003 16:42 GMT | 3 |
Is it possible to have the GAC installed on a different drive than the system drive, so not installed on c:\winnt\assembly. This question because I work on a PC where I don't have any rights to write/install anything on the system drive.
|
| Leaking GCHandles? | 02 Dec 2003 03:42 GMT | 15 |
My .NET Windows Service seems to be leaking GCHandles... after a days of running PerfMon shows 1,800,000 (roughly) GCHandles in use and it climbs steadily as my application runs. My app. makes heavy use of Interop. My understanding of a GCHandle is it's
|
| __pin PtrToStringChars | 01 Dec 2003 16:58 GMT | 1 |
#include <vcclr.h To keep our code a little "cleaner" I'd like to encapsulate the converting of System::Strings to char pointers I know putting the code in a function will not work because when the __pin goes out of scope, the string is no longer locked in memory Would making the ...
|
| Loading an "embedded" resource using C++ | 01 Dec 2003 13:36 GMT | 1 |
Problem 1 I added an icon to the resource files folder in my project. I've look everywhere for the selection "Embedded Resource". I've right clicked to get property pages and used View Property pages. I'm incredibly dense or it just ain't there So I assumed that C++ projects do ...
|