| Thread | Last Post | Replies |
|
| Determining executable code type | 31 Jul 2006 20:20 GMT | 2 |
I am developing an application that loads at runtime executable code, investigates it and catalogs it (stores some information about it). When the executable is managed code, using reflection i can obtain the
|
| Pointless IL Instructions? | 27 Jul 2006 16:48 GMT | 4 |
Thought this was a better forum for this question: I've got a simple console app which just assigns 6 to an int and prints out the value. The IL looks like: .method public static void Main() cil managed
|
| Efficiency of Adding References | 27 Jul 2006 15:10 GMT | 4 |
1) Could someone tell me what are the steps invloved when the CLR loads private assemblies on application startup (The assemblies are added to a VS2005 Windows project using the Add References dialog).? Is it JIT loaded or is it all done at app start up?
|
| Unbox IL instruction question | 27 Jul 2006 00:23 GMT | 1 |
Thought this was a better forum for this question: Hi, I'm referring to: http://msdn2.microsoft.com/en-us/library/system.reflection.emit.opcodes.unbox.aspx
|
| which .NET assembly/class has 'using' inside | 23 Jul 2006 22:09 GMT | 6 |
Who knows, which .NET assembly/class has 'using' inside? I've tried to check several classes with Reflector but found nothig. I wonder whether .net FW classes use 'using' or everything realized with try...finaly statements by hand?
|
| Thread Practices | 21 Jul 2006 18:20 GMT | 3 |
What is the best way to recycle threads (and/or increase the number allotted threads) from the thread pool. I have c# chat service which many users connect. I have implemented some better thread managment because I was seeing tons of "Not enough threads in thread pool to
|
| Building an array type by Reflection.Emit | 21 Jul 2006 15:23 GMT | 9 |
The aim of my app is to auto-generate classes by System.Reflection.Emit. Let's say that the targeted auto generated class should look like this: public class MyClass {
|
| Match GetHashCode between .NET 1.1 app and non-.NET app | 19 Jul 2006 20:48 GMT | 7 |
Within a native C++ app , I need to be able to generate a hash for a given string that matches the hash that the same string returns from the .NET 1.1 String.GetHashCode(). The .NET framework may not be on the machine, so I can't rely on it in any
|
| Feedback ID 115267 | 17 Jul 2006 22:49 GMT | 7 |
I filed a bug report and got the very unhelpful response that I should ask here in the newsgroups for a workaround so here I am. If someone from Microsoft could explain the cause of the bug I filed and offer a workaround, I would be most grateful
|
| Diagnosing root cause of .NET application using nearly 500 MB memory | 17 Jul 2006 01:07 GMT | 21 |
We have a .NET application which is obviously using nearly 500MB memory and we can't understand why. I created a dump for a different issue and the server ended up creating a process shutdown dump of this size. I have seen the DumpLargeObjectSegments command however I'm not sure ...
|
| MFC exe Crashes with /clr option | 15 Jul 2006 12:31 GMT | 2 |
I have a MFC app that was developed with VC++ 2003 7.1 . I have now upgraded to VC++ 2005 8.0. Eventually I plan on using a Windows Form Control and hosting it on existing dialog. 1) First I compiled the project in 2005 and fixed a few errors and am
|
| Thread stack (not call stack) | 14 Jul 2006 22:19 GMT | 5 |
Is there any way to examine a given thread's stack? As in, the list of variables currently accessible by the executing code on a given thread, plus their values? TIA!
|
| application failed to initialize properly(0x80000003). | 14 Jul 2006 19:15 GMT | 2 |
I created a small application that does nothing other than bringing a process up when ever it fails. It needs clr support. I compiled and created the executable in windows 2000 with visual studio 2005. Now I deployed the application on server 2003 and it displayed errors for
|
| OptionalFieldAttribute not needed with BinaryFormatter in .net v2. | 13 Jul 2006 09:35 GMT | 7 |
The MSDN documentation, along with various articles online, such as this one http://msdn.microsoft.com/msdnmag/issues/04/10/AdvancedSerialization/ claim that the BinaryFormatter will throw an exception if you try to deserialize a stream that has missing members in it, and that the ...
|
| Programming .NET for cross platform application | 12 Jul 2006 01:18 GMT | 7 |
We are going to develop our application from scratch. The application is currently written for WIN32 users only, using MFC. The requirements asks that the application will run (in the future) on Windows, MAC and Linux.
|