| Thread | Last Post | Replies |
|
| SOS.dll loses symbol information | 30 Jun 2006 00:48 GMT | 7 |
I originally posted this in the windbg forum but the folks suggested it was more SOS than windbg so i should post over here. I attach to the aspnet_wp process to debug a v1.1.4322 asp.net app. I load the sos.dll and set my breakpoint inside a managed function call
|
| Stack height at all points must be determinable in a single forward scan of IL | 29 Jun 2006 07:47 GMT | 2 |
I did some optimizations on my reflection emit, and now I get the following message from PEVerify: Stack height at all points must be determinable in a single forward scan of IL
|
| vc++: call an executable? | 28 Jun 2006 22:18 GMT | 1 |
Does anyone know how to call an executable from within Visual C++ 2005 Express (using the CLR)? For example, click Button1 to launch Microsoft Paint: System::Void Button1_Clicked(System::Object^ sender, System::EventArgs^
|
| Distinguish between managed module and unmanaged module. | 28 Jun 2006 15:49 GMT | 3 |
Can someone tell me how OS makde differentation betwen managed module and unmanaged module. Means say suppose i developed one exe in MFC and one in .net. How Os recognise that second exe require .net framework. Means which part of
|
| ICLRControl::GetCLRManager error | 27 Jun 2006 19:41 GMT | 2 |
I'm trying to write a custom CLR host for .NET 2.0 in order to revert to the previous model of unloading the AppDomain when an unhandled exception occurs, rather than bubbling it up and terminating the process, which is the new standard behavior. As I understand it, I
|
| Monitor Performance of ADO and ASP without Performance-Counter | 27 Jun 2006 14:43 GMT | 2 |
i'm currently working on a way to determine current database-connection-usage (Unpooled Connection, Pooled Connections, ...) and website monitoring (threadcount, ...) without using the WindowsNT-Performance-Counters.
|
| PEVerify generates improper ERROR | 27 Jun 2006 08:28 GMT | 14 |
I am calling a method on a member field. The declaring type of the method appears in my inheritance hierarchy, and I am making the call from an override of the same method. Here is the MSIL with the project path and classname replaced by ellipses (read via Reflector, I've used
|
| ICeeFileGen | 26 Jun 2006 18:44 GMT | 3 |
I noticed in the documentation, http://msdn2.microsoft.com/en-us/library/ms404463.aspx, that ICeeFileGen has/will be deprecated in the future. What should we be using, from unmanaged compiler code, to create CLR PE
|
| CreateICeeFileGen not deprecated | 26 Jun 2006 02:59 GMT | 5 |
http://msdn2.microsoft.com/en-us/library/ms404463.aspx details ICeeFileGen as being deprecated; but, CreateICeeFileGen (http://msdn2.microsoft.com/en-us/library/ms233159(d=ide).aspx) has not. If ICeeFileGen is deprecated, what is the suggested alternative to
|
| lost in delegation | 26 Jun 2006 02:47 GMT | 9 |
i have encountered a strange behaviour when using ref parameters with delegates. basically the changed value is not reflected back to the original calling method. to prove the point, run this simple console application. it sets a
|
| Forcing x86 runtime on x64 system | 24 Jun 2006 13:00 GMT | 3 |
I have the following problem: I have a .net 2.0 application, which dynamically loads a Managed C++ assembly. The managed c++ assembly has the ProcessorArchitecture correctly set to x86 (32 Bit). The application however does not have the 32Bit-Corflag
|
| use SerialPort with raw device names -or- cancel pending read on FileStream | 22 Jun 2006 04:48 GMT | 25 |
The SerialPort class provided by Microsoft has some code like: SerialPort.PortName set accessor if (value.StartsWith(@"\\", StringComparison.Ordinal)) {
|
| Dot net 2.0 frame work but need it to be 1.1 | 21 Jun 2006 23:07 GMT | 2 |
I have created an interactive cd-rom in vb2005. The government has not made the upgrade to 2.0, is there any way to publish this out so that is will use the 1.1 framework instead fo the 2.0?
|
| Mult-threaded Garbage Collector error in manange/unmanaged application | 21 Jun 2006 13:16 GMT | 2 |
I have a multi-threaded application using both managed (C#/.NET) and unmanaged code (C++). The unmanaged code calls into the manage code (via COM Interop) to perform a variety of tasks. Every two or three days the application would unexpectedly crash; I added a GC.Collect()
|
| Readings on clr optimization? | 20 Jun 2006 22:41 GMT | 3 |
What's the best litterature on how the clr optimizes things, low-level? I'm writing a continuation-style interpreter for a Lisp-flavour language, and I feel my attempts of tuning it for performance
|