| Thread | Last Post | Replies |
|
| weak referance | 30 Jul 2007 11:55 GMT | 1 |
what is the advantage of weaf referace? basically CLR allocate the memory from short/long weak referance table base and the memory will be collected by the garbage by its rule when the object is in no longer in reachable state.
|
| Code Security Question | 27 Jul 2007 18:56 GMT | 1 |
Is it possible to create a new code group based on path? For example, the default gives full trust to local programs. Is it possible to retain full trust for, sy, C:\Program Files while placing limitations on programs loaded into a user's MyDocuments folder?
|
| converting MSIL to Native code | 26 Jul 2007 11:51 GMT | 3 |
while performing JIT compialtion, The MSIL code will be converted to native code but how the native code will modify the assembly? is that exe/dll size will be increased while converting the MSIl code to native code?
|
| What is DLR | 24 Jul 2007 19:59 GMT | 1 |
while surfing i got some blog about IronRuby from where i get to know about DLR. I started reading it from http://blogs.msdn.com/hugunin/archive/2007/04/30/a-dynamic-language-runtime-dlr.aspx But i am confuse about the purpose of it ... "The essential benefits
|
| Windows API in SAFE code. | 22 Jul 2007 23:11 GMT | 1 |
I guess Windows API calls are unmanaged. Then how does CLR manage when a such a call is made in a safe code block? Plz. throw some light on this topic...(may be a good link)
|
| Read and write to Console or a file | 22 Jul 2007 06:23 GMT | 2 |
How come line 1 will output garbage to the screen, but line 2 will output a good number to a file? How can I make line 1 out put a good number to the screen String* dayStr = System::DateTime::Now.ToString("dd");
|
| Using PropertyGrid to on an object instatiated with CreateInstance | 18 Jul 2007 15:42 GMT | 1 |
I am working on a program that has a kind of plugin architecture, and I am having a problem that I hope someone here can help me with. The main application on this project searches through a directory for assemblies (its plugins). A given assembly may have a configuration settings ...
|
| Interacting with managed objects in a hosted CLR | 16 Jul 2007 02:29 GMT | 7 |
I read the book "Customizing the MS .NET Framework CLR" By Steven Pratschner. It describes how to host the CLR in an application for example the way SQL Server hosts the CLR. It also describes in great details how to control the CLR, the way it behaves.
|
| compiler problem | 13 Jul 2007 02:28 GMT | 3 |
My compiler is acting up. When I have building error, the left margin pointer will point to the wrong line. Sometimes, the deferent between the line that has the error and the line it pointed to can be more than twenty lines.
|
| How to pause another thread? | 13 Jul 2007 00:53 GMT | 5 |
i'm writing a windows service for wich a need to run an auxiliary thread. When the service will get paused i need to pause that thread, but since "Thread.Suspend" is being deprecated and since "Thread.Sleep" is for the current thread -not another as i need- then... how I can ...
|
| Re-entrancy problems on Vista | 10 Jul 2007 19:20 GMT | 1 |
We are having re-entrancy problems with Monitor.Wait on Vista. Whenever you do managed blocking in an STA, there is some potential message pumping going on. On Windows XP our code works fine, but on Vista a call to Monitor.Wait dispatches paint messages, and that is a real ...
|
| Programatically disabling lazy loading of assemblies | 08 Jul 2007 08:38 GMT | 6 |
I would like to enforce loading all referenced assemblies at start up in order to investigate them via Reflection. However, those referenced assemblies are loaded by the framework only on demand. Here is a little example:
|
| Why to use language-specific CTS datatype keywords? | 07 Jul 2007 01:30 GMT | 1 |
Why actually to use language-specific keywords for common CTS datatypes - like 'string' for 'String'? Thx
|
| Brackets in C# | 07 Jul 2007 01:26 GMT | 13 |
Is it true that the IL language doesn't include the concept of brackets ("{", "}") and they have merely semantic meaning? If so, how does the C# compiler handle them? (Perhaps it uses the "}" sign to inject code that unreferences all object instances defined within the
|
| Event as property? | 02 Jul 2007 21:00 GMT | 1 |
Is it possible to expose an event as a property? I want to be able to bubble up events from a class that my class references as a member without having to have my class pass on an event from the class that it references. Instead, I would like to do this via a property. To make ...
|