| Thread | Last Post | Replies |
|
| RealTime priority thread and GC | 15 Jun 2005 00:52 GMT | 2 |
I'm interested to know if having a few threads with the RealTime priority can somehow "disable" the GC. I know these are not officilay supported. Thanks.
|
| Service OnStart: return or not? | 14 Jun 2005 16:51 GMT | 2 |
Something I can't quite get out of the docs, is what the 'normal' way is to implement a service's main body. My service collects data from network-attached devices at regular intervals, so it's basically an endless loop with a Thread.Sleep() for
|
| tail method calls | 12 Jun 2005 12:15 GMT | 2 |
does anyone know why the CLR bytecode verifier require that a tail. call instruction shall be immediately followed by a "ret" instruction?
|
| Strange requirement of IConvertible from XML serializer | 12 Jun 2005 07:07 GMT | 9 |
I am often using XML serialization to deserialize type values from XML files. Recently I came across the exception thrown by Framework when I try to cast serialized class from object to a type. The following happens: 1. I read type using XmlSerializer into a generic "object" ...
|
| FIFO mutex | 11 Jun 2005 01:33 GMT | 7 |
"Threads that are waiting for ownership of a mutex are placed in a first in, first out (FIFO) queue. Therefore, the first thread to wait on the mutex will be the first to receive ownership of the mutex, regardless of thread priority. However, kernel-mode APCs and events that ...
|
| Compiling a .Net exe into a native win32 exe? | 10 Jun 2005 21:23 GMT | 1 |
It seems sometime ago I heard you could compile a .net exe or assembly into a native win32 exe or dll, is this possible?
|
| Net.Sockets.TcpClient - only first instace receives data | 09 Jun 2005 12:23 GMT | 3 |
I've got a class that uses a Net.Sockets.TcpClient in VB.Net 2003, approx. like below (I snipped all code that isn't related to the problem). For some reason, only the first instance of this class works. Other instances that are created later can connect and send data, but they ...
|
| dynamically loading assemblies | 07 Jun 2005 19:49 GMT | 1 |
i want to dynamically load .dll files and then get value of a satic property. i am doing this but getting an error: Assembly asm = Assembly.LoadFrom(dllPath); Type type = asm.GetType(); PropertyInfo propertyInfo = type.GetProperty("info");
|
| "self-installing" service | 07 Jun 2005 07:45 GMT | 2 |
I used to create services in a 'self-installing' way: a single executable that serves both as the service executable and as configuration/install program. Depending on a command line option they start either the service itself
|
| Double comparisons for equality | 02 Jun 2005 09:00 GMT | 10 |
I have an application written in .NET that reads in data as doubles. For various reasons, I have a need to know if a given double that I'm reading in is the same as any others that I've seen before. I am currently using a hashtable to do this, using the double as the key. It ...
|