| Thread | Last Post | Replies |
|
| Memory Leak? | 31 Dec 2004 09:29 GMT | 1 |
I have a simple little prototype application that seems to be consuming resources and memory, and when the application stops processing, no cleanup seems to occur. Basically, what happens is this: 1. A data file is created in a directory, and a FileSystemWatcher fires an
|
| NullReferenceException when assigning to out parameter | 27 Dec 2004 11:15 GMT | 3 |
I've got an intermittent exception that occurs roughly once every 80 hours, (once per 14 million calls of this routine). I had the following line throwing on me: objectResult = m_queue.Dequeue();
|
| .NET Memory Model | 27 Dec 2004 09:34 GMT | 12 |
I am looking for a detailed technical documentation of the .NET memory model. I am to implement a double lock checking(DLC) in C# to avoid a race condition in a sure proof way for a singleton class. I know in JAVA DLC is not always sure proof because of the Java memory model ...
|
| Socket Exception only on windowsXP - SP2 | 23 Dec 2004 16:33 GMT | 1 |
my program use a connection to WebService and running without any problem on win2000 and winXP. but when i run it on winXP with SP2 it throw me Socket Exception, so i turned off the firewall in the security center,
|
| Managed MFC dll has all MFC class exposed | 22 Dec 2004 01:03 GMT | 1 |
I built a MFC dll in mix mode (has managed and unmanaged class). The type library has all the MFC classes exposed. Is there any way to only expose the managed class and hide all the unmanaged class? I checked some other group. It seems that .net 1.0 marks unmanaged
|
| Access managed member field in Finalizer | 21 Dec 2004 22:04 GMT | 2 |
Suppose you build a class that needs a temporary directory for its operations: class MyClass {
|
| Generating MSIL from an assembly | 20 Dec 2004 22:31 GMT | 2 |
Hey All Just wondering if anybody would have any resources about generating MSIL from an assembly. Essentially what I am looking for is resources that explain, or show, how disassemblers like ildasm work. Not how to use them,
|
| Appending to CurrentDomain private path using AppDomainSetup | 18 Dec 2004 12:48 GMT | 9 |
Hello, I'm using the Whidbey beta and I'm having this problem... I'm developing an application which dynamically loads Assemblies from other directories. To be sure any dependent assemblies are loaded as well, I add the Assemby's directory to the PrivatePath of the AppDomain using ...
|
| Can't import .OCX assembly into Web Matrix Project.Hi, | 17 Dec 2004 15:59 GMT | 1 |
I am using Web Matrix Project as .NET programming environment. Can you show me detailed steps how to import the .ocx library into the Web Matrix Project. I can't seem to be able to import other assembly than .dll, .exe or .mcl . I am pretty new to the .NET programming environment, ...
|
| running net application from a shared drive | 17 Dec 2004 10:02 GMT | 7 |
I as a developer have an application that I can run from my box or from a shared drive, but I cannot get anybody else to run it. They do have the same version of the framework on their boxes, yet they are unable to run the application. What do I need to do. The error is not a ...
|
| Is it possible to wite IL programs directly? | 17 Dec 2004 09:54 GMT | 3 |
Is it possible to wite IL programs directly? If so, how to write it?
 Signature Thanks, Prabu
|
| Shadow copy with with CLR Hosting Interfaces | 17 Dec 2004 09:22 GMT | 7 |
I'm trying to create the AppDomain from the unmanaged C++. I can create the AppDomain without problem by method ICorRuntimeHost.CreateDomain. But I cannot create the domain with shadow copy turn on.
|
| .override directive missing in manual COM interop... | 17 Dec 2004 09:17 GMT | 4 |
I am so close to getting my manual COM interop classes to load correctly! I have very slowly tracked down the problem to missing .override directives on the classes in the IL generated from my assembly compared to that of TlbImp.
|
| Type loading question | 16 Dec 2004 22:23 GMT | 1 |
When a Type contained in an assembly gets instantiated, does the whole assembly image gets loaded in memory? Thanks in advance. Regards,
|
| AppDomain Unhandled exception | 15 Dec 2004 20:45 GMT | 4 |
It is possible to hook on the UnhandledException event in the Default app domain, and that way get notifications about unhandled exceptions in all of the threads in the win32 process, i.e. all of the App Domains. Is there a way to know in which AppDomain the exception occured?
|