| Thread | Last Post | Replies |
|
| Different Casting C# - VB.NET? | 21 Nov 2004 07:55 GMT | 2 |
The following code in C# results in decimalPlaces = 6. private static long frequency; QueryPerformanceFrequency(out frequency); decimalPlaces = (int)Math.Log10(frequency);
|
| Plugin difficulties | 20 Nov 2004 05:57 GMT | 6 |
Right now, I'm trying to implement a flexible method of allowing users to add the capability to read and process new data formats through a plugin framework. I have an abstract base class, "SourceObject", which has a method "Create" which takes a string key that represents
|
| GAC Update without Publisher Policy? | 19 Nov 2004 22:20 GMT | 1 |
I have an app that references a specific version of a dll in the GAC. If I update that dll in the GAC, and only change the last number of the version, the app doesn't seem to get the new version. Since my app references a specific version, will I need a publisher policy
|
| MSI File format | 18 Nov 2004 19:11 GMT | 2 |
I am writing some kind of a file scanner, at certain time all of the files under a certain directory will be scanned, this scan require de-compression of common files formats such as ZIP and MSI, the ZIP file format is well known so there is no problem of decompressing it ...
|
| Undebuggable StackOverflowException, possibly related to hotfixes from windowsupdate | 17 Nov 2004 05:29 GMT | 10 |
I am experiencing a StackOverflowException suddenly in an application that hasn't changed and had not previously experienced a StackOverflow in the months it's been in use. The JIT debugging window appears on the machine and I choose to debug with a
|
| Strange problem | 16 Nov 2004 16:22 GMT | 1 |
Ok, here is the situation: We have a windows service A and a windows foms application B, both written in C#, compiled with .net framework 1.1
|
| Resizing an existing PE section | 16 Nov 2004 06:43 GMT | 5 |
Introduction: ****************************** I am trying to extend an existing section of a PE, in addition to updating the ‘DataDirectory’ies and section RVAs I have to update the resources RVAs
|
| ECMA Mistake? - ArrayTypeMismatchException | 14 Nov 2004 07:49 GMT | 6 |
I've read in the ECMA standard for CLI that the "ldelem" instructions can throw an "ArrayTypeMismatchException" "if array doesn't hold elements of the required type". This is only for "ldelem.ref". The same exception type can be thrown also by "stelem".
|
| JIT Time | 12 Nov 2004 22:25 GMT | 4 |
I have a web service that I suspect is having some JIT issues. I have not proved it yet (and suggestions as to how to do so are welcome) but I suspect that the delay (as long as 8-9 seconds) on the first invocation is due to time spent in JIT. I was under the impression that once ...
|
| Exception Handling - help! | 12 Nov 2004 17:05 GMT | 24 |
My problem is related to the user-filters used in CLR. They are executed in the 1st pass of the exception handling mechanism (it is a 2-pass mechanism!). But their execution can involve calling other methods, right? How would then look the CPU stack of call frames?
|
| Binding policy | 12 Nov 2004 01:40 GMT | 3 |
My app binds to an assembly (version 1.0.0.0) which has a bug. I release a new version (1.0.0.1) where the bug has been resolved. My app should bind to the new version by default without me having to defining a binding policy. It is not. Any ideas why?
|
| .NET Security exception (???) | 10 Nov 2004 22:49 GMT | 1 |
I am writing an Obfuscator to Obfuscate managed .NET assemblies, the obfuscator works with most of the assemblies I have tried, how ever, some assemblies ( such as nunit-gui.exe ) generate the following exception ( Only with the obfuscated assemblies ) :
|
| getting parameter type from method signature | 10 Nov 2004 06:25 GMT | 2 |
I'm having a problems getting parameter types from the method signature when the CorElementType I get is ELEMENT_TYPE_CLASS or ELEMENT_TYPE_VALUETYPE. For example, the type tokenid I'm suppose to be getting is 0x02000006 but I
|
| method pointers vs types initialization | 09 Nov 2004 16:49 GMT | 2 |
Anyone who has an idea, please help me! Consider the following scenario: I have function pointer (via ldftn instruction) to a static method defined by class A. I execute the instruction "calli" with this function pointer: one
|
| AppDomain questions | 09 Nov 2004 10:09 GMT | 4 |
Im designing a module that is made of some sub modules (obviously... :) ), each performing other task. One of the sub modules should be very stable, and I dont want it to crash over problems the other sub modules might have.
|