| Thread | Last Post | Replies |
|
| bool - thread safety | 03 Aug 2004 20:27 GMT | 9 |
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,
|
| Process.Start("http://somesite") throwing a file not found win32 ex. | 03 Aug 2004 15:56 GMT | 5 |
hi, i'm opening a web browser from my winforms app, via the System.diagnostics.process.start(theURL) method. it has been working fine, although on one client, i am getting the following exception: Win32Exception The system cannot find the file specified System.Diagnostics.Process ...
|
| Reflection and GetField | 03 Aug 2004 15:22 GMT | 11 |
I'm trying to find a field in a object. I use this function: pObj.GetType().GetField(pstrFieldname) But it seems that he finds only fields which are initiated.
|
| Loading the whole DLL? | 03 Aug 2004 05:32 GMT | 6 |
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
|
| RE: Forcing a Large Object Heap allocation | 03 Aug 2004 03:43 GMT | 5 |
I don't think that you have this level of control. I don't see any reason why this would be useful either. The memory manager must be properly encapsulated and should not expose this level of detail. Why do you need this?
|
| Updating a dynamically generated type | 02 Aug 2004 19:09 GMT | 1 |
Is there a way to update a dynamically created type without having to rebuild it from scratch? I know that once you use the CreateType() method, you cannot define more methods on a TypeBuilder instance but it is possible to add more types to a
|
| shared Domain and Assembly loading | 02 Aug 2004 15:40 GMT | 3 |
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
|
| System.Drawing.Image.FromFile leaves file open longer than necessary: bug? | 02 Aug 2004 07:54 GMT | 4 |
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,
|