all groups > dotnet clr > july 2004 > threads for july 29 - 31, 2004
Filter by week: 1 2 3 4 5
Loading the whole DLL?
Posted by Lei Jiang at 7/31/2004 12:22:43 PM
There are several questions :
When the program start, does it load all the assembly it referenced?
When the assembly is loaded, does CLR only load the menifest of the
assembly, or load the whole dll? If it does not load the whole dll, when I
use a type in that assembly, does the CLR load the... more >>
Can't find a way to get the ICeeGen interface
Posted by Nadav at 7/31/2004 5:07:01 AM
Hi,
1. I am writing some kind of a CLI Linker
2. I am using the unmanaged meta-data API.
I wonder browsing "cor.h" I have encountered the 'ICeeGen' this interface is retrieved by the 'ICorModule' interface, I didn't find any API that provide me the means to get an 'ICorModule' interface, how sh... more >>
What is class[] in CLR Profiler?
Posted by Lei Jiang at 7/30/2004 1:28:52 PM
I download the CLR profiler and run it. It's great and the documentation is
very good. But I don't know what is class[] in graphs. It appears frequently
but the document doesn't mention it. Is it the metadata?
Thanks!
... more >>
bool - thread safety
Posted by rhashemian NO[at]SPAM hotmail.com at 7/30/2004 1:17:13 PM
hi all,
this is what the clr docs say about boolean:
This type is safe for multithreaded operations
does this mean i can access a bool object from any thread
without worrying about sync issues? pretty sure that's it,
but just wanna make 100% sure.
thanks,
rh... more >>
shared Domain and Assembly loading
Posted by Clément_ESCOFFIER at 7/30/2004 10:23:52 AM
Hello,
I have a little questions about Assemblies who are loaded in the shared
Domain.
When an AppDomain ( perhaps the Default Domain create for the executable
) want use a Shared Assembly ( who is in the shard domain ), how the
assembly resolver find it ?
And when appdomain find the ass... more >>
System.Drawing.Image.FromFile leaves file open longer than necessary: bug?
Posted by Lucvdv at 7/30/2004 10:12:29 AM
I just found out that BMP files loaded with Image.FromFile remain open
until my application terminates. Is this a bug, or do I have to do
something to make sure the file is closed?
For example if this VB code (in a button click handler) is executed twice,
the delete fails on the second pass... more >>
generating an EXE with an assembly with the unmanaged API
Posted by Michael Dulaney at 7/29/2004 8:05:34 AM
Hi,
I'm trying to read a managed executable, modify the code
in the executable's methods, and then write it to a new
executable.
I use IMetaDataImport to gather the metadata and
IMetaDataEmit to generate the new metadata. I then write
the information from IMetaDataEmit to a file via
... more >>
|