| Thread | Last Post | Replies |
|
| AppDomain.CurrentDomain.ProcessExit && CTRL-C | 30 Nov 2004 22:24 GMT | 2 |
My console application needs to do some shutdown processing even when a CTRL-C is pressed. So I installed ProcessExit event handler and was surprised to find this did not get invoked when a CTRL-C occurs. I then set about using the Win32 API to install a console ctrl handler to ...
|
| DateTime.Parse converts a UK format monetary sum into a date | 30 Nov 2004 21:31 GMT | 1 |
Hi group, If you take the following code, the result is not, as one would expect, an exception, but rather the string "01/12/0500" DateTime dt = DateTime.Parse("£12,500", new CultureInfo("en-GB"));
|
| Rationale on double and single arithmetic handling | 30 Nov 2004 20:06 GMT | 6 |
I am involved in a port of an engineering application to .NET. While testing some of the math (using doubles), I was surprised to find that in cases where you have an overflow or divide by zero etc..., the result is set to a double.NAN or double.Infinity etc... rather then
|
| More JIT questions? | 30 Nov 2004 20:01 GMT | 1 |
I have a web service that uses an assembly and a Windows service that also uses an assembly. If I ngen the assembly will both the web service and the Windows service use the ngen'd image? If the web service is running behind a clustering of web servers. I use ngen
|
| How prevent the crash and exit gracefully? | 30 Nov 2004 13:02 GMT | 2 |
I notice the following strange behavior of the applications running under .NET Framework. Let say I have application MyApp.exe which reference assembly MyAssembly.dll. The MyAssembly.dll is strong named assembly, which is installed in the GAC.
|
| Get the status of a running application | 29 Nov 2004 19:01 GMT | 2 |
is it possible to hook into a .NET program and get the Stackframe of the currently executed method? I know I can use the Process Class to enumerate the threads of an application. But can I go any deeper than that?
|
| DateTime | 29 Nov 2004 14:55 GMT | 1 |
I have some trouble. I hava configurable date format, for ex. like this 'yyyyMMdd' and I try to convert strings to date time, and .net give me an error 'string is not recognized as a valid DateTime', my code is: DateTimeFormatInfo df = new DateTimeFormatInfo();
|
| How to find all keys map to a object in a Hashtable? | 28 Nov 2004 12:49 GMT | 1 |
Sometimes there are several keys map to the same object in the hashtable. How to find them quickly given the object?
|
| Printing a signature | 27 Nov 2004 05:21 GMT | 4 |
Does anyone know of an (unmanaged) function to print a signature given the sigblob or do I need to decode the sigblob myself? Thanks, Mike
|
| Basic GAC question... | 26 Nov 2004 21:40 GMT | 3 |
I was under the impression that once you had loaded an assembly into the GAC, that you didn't have to make specific reference calls to the assembly in another assembly. I was under the impression that this was the way you extended the .net framework.
|
| PE COM+ Header [???] | 24 Nov 2004 14:27 GMT | 1 |
Introduction ***************** I am writing a file system scanner ( similar to unvisus apps ), this require me to 'check' each file on the file system, hence, I have to know the type of
|
| It's said that System.Enum is a reference-type ! ? | 23 Nov 2004 08:44 GMT | 2 |
Please check this: http://msdn2.microsoft.com/library/system.enum.aspx It said : "Class Enum is derived from class ValueType; that is, Enum is itself a
|
| url parameter | 23 Nov 2004 07:36 GMT | 1 |
how can i get the parameter "param" from the url http://localhost/myapp/webform1.aspx?param=p1 in the serverside c# code? thank you
|
| VS.Net Warning | 21 Nov 2004 20:10 GMT | 4 |
I have a vs.net solutions with many projects with web project that have a reference to a class libaries but whenever i compile the web project i get this following warning Warning: The dependency 'AsiaLife.Shared, Version=1.0.1749.18557,
|
| Microsoft namespace | 21 Nov 2004 08:51 GMT | 3 |
I was reading in the .Net Book of the MS Press, and they said that the system namespace is the root of all namespaces and classes in the .Net class library. However I noticed the existence of the Microsoft namespace which is not
|