| Thread | Last Post | Replies |
|
| Primitive Types - what resolves them? | 22 Oct 2003 23:02 GMT | 1 |
I understand that the primitive types in the base class library are handled on iml-level. But when I look at the source code of rotor, I see that all the primitive types like int32, double, etc. are structures drived from ValueType, and these structures are using, well, the ...
|
| How to add an assembly reference using CodeDOM? | 22 Oct 2003 20:39 GMT | 3 |
This code (adapted from the examples in the docs) doesn't make complete sense to me. I have it working, but I'm wondering why I need to declare an assembly reference in 2 places. TIA. Dave
|
| Re-Repost: How do we define the JIT debugger in registry??? | 22 Oct 2003 18:56 GMT | 6 |
I'm trying to define on my production machine the JIT debugger to catch a bug that only appear there.... :-(( I googled and had a look to MSDN (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/ht
|
| Is socketbuffer empty? | 22 Oct 2003 08:49 GMT | 2 |
Hello Fellow Developer, This looks like a long mail, but at the end of this post is my socket wrapper attached. I want to make a timeout procedure that starts counting down after the
|
| Memory problem | 22 Oct 2003 08:45 GMT | 4 |
I have a Win form application, that receives large (more than 100 000 records) datasets using ADO.NET I open a form and execute data select. The form obtains about 140 000
|
| StringBuilder and PCHAR[] | 21 Oct 2003 13:39 GMT | 1 |
I am iterating through 454 rows of a table and with each row I use the ID field to form a URI for a contact in a public folder on my exchange server. My memory keeps growing though. I think it is because I reconstruct my URI each time. I have done this 2 ways and I want to know ...
|
| Execution of a dotnet binary in a different machine | 21 Oct 2003 11:00 GMT | 4 |
I have an application which sends a dotnet binay file from client to server. Is it possible to execute the dotnet binary in the server(I have CLR here) In java if we have the class file we can execute it in any machine. Is
|
| TimeZone and DateTime - what were they thinking? | 21 Oct 2003 01:19 GMT | 3 |
TimeZone - the only instance you can get is one representing the local time zone DateTime - cannot represent a time before 00:00:00 1 Jan 1 CE What were they thinking? This is a serious question - can anyone come up
|
| Strange behavior with DirectX | 19 Oct 2003 18:54 GMT | 5 |
I have this small program using Direct 9.0b. The computation of `d1' and `d2' in `launch' does not give the same results after I've initialized some stuff of DirectX. Is this normal? A bug somewhere? Thanks,
|
| Profiling Method Arguments; CORDBG_E_IL_VAR_NOT_AVAILABLE | 19 Oct 2003 16:37 GMT | 3 |
My CLR Profiler watches Function Entry and Exit with COR_PRF_MONITOR_ENTERLEAVE and logs Method Arguments with ICorDebugILFrame::GetArgument API.
|
| Has anyone seen a delegate lose track of its target? | 17 Oct 2003 10:57 GMT | 4 |
I have written code the subscibe to a delegate that is called at a specific interval. Initially, everything is fine, and the delegate works. However, after some (seemingly random) amount of time, the delegate appears to get disconnected.
|
| Mutiple CPU problem in Threads.Count | 17 Oct 2003 07:02 GMT | 6 |
"System.Diagnostics.Process.GetCurrentProcess().Thread.Count" This does not work on the machine with mutiple CPU? Any hints from MS guys? Shashank
|
| How to get one type's array type! | 16 Oct 2003 16:00 GMT | 6 |
with Reflection API, I want to define a array of some type. if the type is defined in else assembly, I can get the array type by call Type.GetType( "TypeName[]" ). but with a type i am defining in same dynamic module, and i cannot create type before define the array type. then how ...
|
| Sign application to run in intranet | 15 Oct 2003 19:45 GMT | 1 |
I've got an application written in C# which reads from the registry. Being started from a network file share, the app crashes. I found out that you can "Full Trust" the Intranet Zone, which makes the application running fine; however, since there are a lot of clients working with ...
|
| Code injection. Is it possible using codeDom? | 15 Oct 2003 14:10 GMT | 3 |
I want to extend a class in a dll without having the code for it. Is it possible using codeDom? I still didn't studied codeDom and I've just an idea of it but I'm wondering if it's possible to construct a CodeDom Graph from an existing assembly, take a reference
|