| Thread | Last Post | Replies |
|
| CLR Deadlock? | 30 Jun 2005 21:31 GMT | 7 |
I am diagnosing a strange problem in .NET service (written in C#, framework 1.1 with sp1 installed - 1.1.4322.2032). Service is multhithreaded (heavily) and takes huge load (in CPU time, memory consumption and IO load). Service uses remoting to expose some interfaces and makes a lot ...
|
| job scheduler in .net | 30 Jun 2005 14:24 GMT | 5 |
How do we schedule a job?Is there any alternative other than creating a windows service? Are there any job schedulers in .net? Any freeware? Regs
|
| Marshalling LPSTR | 30 Jun 2005 01:41 GMT | 4 |
I have a COM interface which has the following method: HRESULT Item( [in] DWORD dwIndex, [in] DWORD dwWhichName,
|
| AssemblyResolve callback never called in .NET 2.0 | 29 Jun 2005 21:41 GMT | 3 |
We have a product written in C# that we are migrating to Visual Studio 2005 (beta 2) and .NET 2.0. Everything builds fine, but during runtime we are hitting a new exception. When it is deserializing a some classes from disk that were serialized with the .NET 1.1 version, we are ...
|
| CLR error on program startup | 28 Jun 2005 08:26 GMT | 5 |
I have developed a .Net application in C#, use Visual Studio 2003 (.Net framework 1.1). I am testing that it installs and runs OK on Windows XP (which is what it was developed under) running under Virtual PC.
|
| Stopping a thread executing a blocking call | 26 Jun 2005 15:23 GMT | 3 |
In a previous post I discussed the most suitable approach for multi-threading in a provided scenario and was provided very usefull feedback (thanks Stefan Simek, Jon Skeet and John Conwell).
|
| Managed Memory Consumption - Service vs. Command Line EXE | 21 Jun 2005 12:20 GMT | 14 |
I have written an application to process a file full of XML. For each "main element" in the xml file, the application parses it and writes the resulting object to an Oracle database. Here is the problem. In an XML file with 20000 objects, running as a service, the silly thing
|
| String.Trim method throws ExecutionEngineException | 20 Jun 2005 22:17 GMT | 5 |
This problem occurs after system has been fully initialized and main form is displayed. Calling 'Trim' method during initialization causes no problem. I tried to avoid using this method but some framework classes use it as well. For example 'DataView.Sort' property uses it ...
|
| CompareTo return values are not consistent. | 20 Jun 2005 20:41 GMT | 4 |
It seems that x.CompareTo(y) returns -1, 0, or 1 when x and y are int, long, uint, float, double, string, or DateTime types, depending on whether x is less than, equal to, or greater than y. But when x and y are sbyte, short, byte, or ushort types, the return value is y-x ...
|
| CallContext threading problems. | 20 Jun 2005 10:15 GMT | 2 |
Simple question :- On a web server I sometimes see the error Item has already been added. Key in dictionary: "MethodName" Key being added: "MethodName" I'm using CallContext to store information. Is there a possibility that a two (or more) logical threads are sharing the same
|
| Threading scenario - best approach ? | 17 Jun 2005 21:06 GMT | 14 |
In one of my classes I have a method, lets call it Fetch, which will collect data from various sources and return the combined result. Each of the sources can
|
| general runtime host question | 17 Jun 2005 18:33 GMT | 5 |
What I want to know is; do all shell executed .NET app run in the same process? For that matter do all runtime-hosts run all of their app-domains in the same process? In the case of a shell executed application here's my understanding: Double
|
| Execute code from a text file | 15 Jun 2005 17:38 GMT | 4 |
Can anyone tell me how I can run vb.net or C# code from a text document? I want to have a smart client (compiled) and I want that smart client to write to a text file and execute the code from that file. I’ve seen an example of this somewhere; I think you have to bring in a
|
| casting vs. the convert class | 15 Jun 2005 16:49 GMT | 2 |
which is more efficient: casting or using the convert class? please give reasons. tia
|
| result of (int)NaN ? | 15 Jun 2005 01:16 GMT | 2 |
I have the following instruction in C++.NET : x = log10(n); int y = (int)(x * h); where x, h, n are of type double, and x receives the value NaN
|