| Thread | Last Post | Replies |
|
| ICorProfilerInfo::GetModuleInfo doesn't have argument for assembly | 23 Jul 2004 20:33 GMT | 1 |
According to the profiling documentation I have, ICorProfilerInfo::GetModuleInfo has the following prototype: HRESULT GetModuleInfo( ModuleID moduleId, LPCBYTE **ppBaseLoadAddress, SIZE_T cchName,
|
| String testing | 22 Jul 2004 19:05 GMT | 10 |
I have always been curious. Which is faster? if (m_string.Length==0) foo(); if (m_string.Equals(string.Empty))
|
| how to define this? | 22 Jul 2004 10:13 GMT | 4 |
if there is a C function in a DLL(My.dll) has this declaration, struct MyStruct { int a;
|
| clr vs pe | 21 Jul 2004 23:10 GMT | 2 |
what is the difference between clr code and pe-code ( i mean, low level - file format, memory placement etc)?
|
| assembler code | 21 Jul 2004 20:09 GMT | 4 |
how to write .net code using masm?
|
| multimodule assemblies info | 21 Jul 2004 19:52 GMT | 2 |
Currently I'm working on a project which contains 100+ assembly files. Can anyone point me a good info source on building multimodule assemblies, info on bonuses and drawbacks of this approach? regards,
|
| Will 2.0 of the clr have support for covariant returns? | 21 Jul 2004 18:59 GMT | 6 |
Will 2.0 or some other future version of the clr have support for covariant returns?
|
| Reflection to get objects that implement interface / or in namespa | 21 Jul 2004 18:25 GMT | 1 |
I wanted to know if it is possible to use reflection to get a list of all classes that implement a given interface. If not, is it possible to get a list of all classes that exist in a given namespace? Thanks, Dinesh
|
| Code size effects on application performance | 21 Jul 2004 07:56 GMT | 2 |
I am searching for information on the performance impact/implications of using large assemblies (>1MG). Is an assembly loaded fully into memory? Or are the classes loaded as they are needed? As far as execution time, you take a one time hit at
|
| assembly loading question | 19 Jul 2004 14:10 GMT | 2 |
I'm confused that only the strong name assembly can't load successfully for different AssemblyVersion, or it works on every assembly?
|
| native assemblies | 19 Jul 2004 12:03 GMT | 1 |
When a managed application is executed by the CLR, the managed assemblies are translated to native assemblies. This native assemblies are storaged in some subdirectory in my pc or simple lives in memory? Can I set the time of life to native assemblies?
|
| ANN: .NET 2.0 Beta - CODE COVERAGE EDITION | 17 Jul 2004 11:55 GMT | 1 |
NET Framework Version 2.0 Redistributable Package Beta 1 (x86) CODE COVERAGE EDITION The .NET Framework Code Coverage Edition is a new mechanism that enables you to give Microsoft direct feedback on what portions of the .NET Framework and Win32 you're most reliant on.
|
| Genericity support in IL | 17 Jul 2004 00:36 GMT | 1 |
Please, is there anything written on genericity support in the Intermediate Language? I mean, something like the Tools Developers Guide in the SDK. Most of these documents refer to CIL v1.1 (Jun 2003), and only one of them (Metadata Unmanaged API) refers to genericity. I'm ...
|
| Reflection: InvokeMember and GetProperty/SetProperty | 16 Jul 2004 21:52 GMT | 1 |
A while back I've built a bunch of generic Reflection routines that simplify the process of access properties/fields and methods a bit easier by creating wrappers around Property/Field/Method info members. For example:
|
| Invoking complex constructors through reflection. Is there any way? | 16 Jul 2004 21:37 GMT | 2 |
I am using reflection to successfully find a System.Type that derives from an abstract class that my code knows about. I want to create an instance of this derived type. The type in question can be created only with a complex constructor (it has one parameter). Is there any way ...
|