| Thread | Last Post | Replies |
|
| Access Managed Object From Unmanaged Code | 30 Sep 2003 23:07 GMT | 1 |
I am having problems accessing a managed object from unmanaged code. Specifically, I have a .NET forms application with a web service proxy. The forms application links to an unmanaged DLL which uses callbacks
|
| Object Instantiation | 30 Sep 2003 01:50 GMT | 4 |
I'm trying to understand the details of calling "New" on a managed object. In the COM world, calling "New" caused the following superset of events:
|
| Taste this correction pack | 29 Sep 2003 15:06 GMT | 1 |
Microsoft User this is the latest version of security update, the "September 2003, Cumulative Patch" update which eliminates all known security vulnerabilities affecting
|
| About TypeBuilder | 28 Sep 2003 11:05 GMT | 1 |
I want to create a type like delegate with Emit API. But when i want to save the assembly, it failed! I had call SetImplementationFlags( MethodImplAttributes.Runtime|MethodImplAttributes.Managed );
|
| Managed C++ potential bug: Lack of "return" statement not an error | 27 Sep 2003 21:50 GMT | 1 |
With .NET 1.1, the following code does not give an error during compilation: Type* foo()
|
| .NET String class and ASCII NUL character question | 27 Sep 2003 00:24 GMT | 7 |
I've encountered a problem when using the String class in C#. Strings seem to be truncated at the first NUL character. Am I correct? Cheers, Brian
|
| Will TypeBuilder::DefineNestedEnum() ever appear again? | 26 Sep 2003 23:19 GMT | 1 |
I'm making heavy use of System::Reflection::Emit classes right now, and I need to create an Enum within a class. However, it appears that I can only create Enums at the module level with ModuleBuilder::DefineEnum().
|
| Is this a memory leak? | 24 Sep 2003 11:55 GMT | 3 |
Hello, I wonder if you can please help
We are running a web application built using .net framework version 1.0, service pack 2, running on Windows 2000 server, service pack 3.
|
| HELP! Unmanaged memory management from within managed code | 24 Sep 2003 04:57 GMT | 2 |
When kernel/crtdll/msvcrt memory allocations are p/invoked from managed (C#) code; where exactly is that memory allocated? Does "static" memory allocation made by C++/C runtime library functions will cause memory fragmentation within CLR's heap (and thereby
|
| How to properly deploy shareable assemblies to a server | 23 Sep 2003 22:55 GMT | 1 |
I'm looking for a .NET "best practices" opinion on the following. I have a .NET assembly (call it MyApp.dll) that I want to make generally available to other people in my company. I will periodically be coming out with new minor versions (bug fixes) and major versions (new ...
|
| -- CLR : Garbage collected before Object is Invalid -- | 23 Sep 2003 15:20 GMT | 1 |
I am running into situations where the objects in my application become invalid in the course of the run. I am pretty much sure about it, as If I run the sample in the loop with a delay then it works fine, but when I run
|
| Customizing a Runtime Callable Wrapper | 23 Sep 2003 02:51 GMT | 4 |
I've tried to customize the Execute method of ADO Command from its generated DLL (by Tlbimp.exe). The original code of the Execute method is: .method public hidebysig newslot virtual
|
| Can someone explain Thread.SpinWait() method? | 23 Sep 2003 01:28 GMT | 3 |
I was looking at the docs for Thread and can't understand the difference between Thread.Sleep and Thread .SpinWait. What exactly does SpinWait do? The MSDN docs are very general on this one.
|
| SetFunctionReJIT causing deadlock in the CLR | 23 Sep 2003 01:24 GMT | 1 |
I can't figure out how to use ICorProfilerInfo::SetFunctionReJIT(). Every time I call it on a functionId other than the one which has been passed to the current callback function (ie JITCompilationFinished()), the CLR deadlocks on the next invocation of the method whose function id ...
|
| passing a struct by ref to unmanged code | 23 Sep 2003 01:10 GMT | 1 |
i want to pass a struct by reference to a function in a c++ dll. the problem is that the call causes an ArgumentException in the calling c# code. i already tried to use "out" instead of "ref" there was no exception
|