| Thread | Last Post | Replies |
|
| Assembly Loader Question | 22 Jun 2004 20:46 GMT | 2 |
In microsoft articules the say that Assembly load method is the one that is used by the clr to locate and load an assembly. They discriped in create details all the steps involved in that process. My question is the following i have and assembly that is located under
|
| How to tell mscoree.dll to load MSCORSVR.DLL? | 22 Jun 2004 14:33 GMT | 2 |
MSCORSVR.DLL is the multiprocessor build of the CLR. How to load it instead of MSCORWKS.DLL? Thanks.
|
| DateTime.ParseExact custom format parsing | 22 Jun 2004 01:56 GMT | 2 |
From MSDN's "Parsing Date and Time Strings" doc: You can specify one of the standard date and time format specifiers or a limited combination of the custom date and time format specifiers. Could anyone elaborate on what the "limited combination" is?
|
| hook with reflection? | 21 Jun 2004 09:12 GMT | 7 |
Does any one know if there is the way "to hook" method in the object using reflection? I don't want to override class (construct new one) but what I want is simply replace one method with another on run time. This method is virtual
|
| Quick ValueType question | 21 Jun 2004 08:34 GMT | 3 |
If I create a valuetype with ten string members. Are the ten string instances created in the heap or stack? JL
|
| mscoree.dll and GetFileVersionInfo | 20 Jun 2004 02:35 GMT | 3 |
Is it safe if I want to check mscoree.dll version to determine .NET runtime version? So far they correspond. I know about GetCORVersion. But I would like to know the answer to my question. Thanks a lot
|
| How do I re-write an assembly's metadata? | 19 Jun 2004 08:59 GMT | 2 |
I need to open an assembly, change some custom attribute's values and then re-write the assembly without re-compiling it. I tried using Reflection.Emit, but I couldn't cast (System.Reflection.)Assembly to (System.Reflection.Emit.)AssemblyBuilder, which is the class where custom ...
|
| BadImageFormatException | 19 Jun 2004 01:18 GMT | 2 |
Our VB.Net Application suddenly started to raise an CLR exception on a client machine. CLR Exception code is 800700b. I found that Error 0x8007000b == COR_E_BADIMAGEFORMAT == System.BadImageFormatException indicating that the file image of an executable program is invalid or the ...
|
| Q: Referencing shared assembly in your project | 19 Jun 2004 00:55 GMT | 6 |
I have a set of assemblies that are shared by a number of applications(ASP.NET). I signed the shared assemblies using SN. I would register them in the GAC in production but I was wondering if I need to do the same when I'm developing.
|
| Supporting .NET libraries version consistency | 17 Jun 2004 16:03 GMT | 2 |
How can I achieve the situation like that: there is some application (.NET) and it is using some class library (strongly named, installed by .msi, registered within GAC). I'd like to have a crash on my client application when the class library version differs from
|
| install error occuring | 17 Jun 2004 15:52 GMT | 1 |
while installing an VisualPerl-vs2003-1.8.1.2827.msi I get the following error "devenv.exe - mscoree.dll load error (Error code = %X) Two different copies of MSCOREE.DLL have been loaded First copy
|
| CLRProfiler Managed Windows Services | 17 Jun 2004 14:55 GMT | 1 |
Folks - Has anyone been able to start a managed windows service through CLRProfiler and actually get it to profile? I've gone through the sparse posts that exist out there and my situation is
|
| A Problem IMetaDataEmit::DefineMethod | 17 Jun 2004 14:45 GMT | 9 |
I'm copying one function's body (including header) into a newly one. The I'm calling the new one and receiving a MissingMethodException (a managed one). I can obtain information about the function I've just created, using IMetaDataImport and ICorProfilerInfo, so I'm not really ...
|
| Using Keyword Dispose and GC | 16 Jun 2004 16:57 GMT | 3 |
Our .Net team have been pondering about using keyword. We are using streams FileStream and BufferedStream. We use using keyword at FileStream, and not BufferedStream which wraps FileStream. So bunch of people said what if exception occurs buffered stream is
|
| Where is JIT compiled code stored in memory? | 16 Jun 2004 01:40 GMT | 7 |
I'm profiling an app, trying to find where all the memory is going. I am using the CLR profiler and PView. I would like to know - does the CLR keep BOTH the IL and native JIT compiled code in memory at the same time, thus bloating the mem requirement of .net
|