| Thread | Last Post | Replies |
|
| typeof(Byte[]).GetInterfaceMap | 12 May 2006 18:02 GMT | 1 |
I thought GetInterfaceMap should work for every interface returned by GetInterfaces()... but here I have a counterexample. Has anyone seen this before? Here's a unit test for Zanebug (substitute your favorite test runner):
|
| Framework 2.0: Ignore GAC when loading referenced assembly | 12 May 2006 09:59 GMT | 5 |
Here's a fun one: Our Windows Forms application uses the Crystal Reports .NET assemblies, which we ship and reference privately from our application folder. These assemblies have strong names. Works great - most of the time.
|
| written language of framework class library | 11 May 2006 04:23 GMT | 1 |
what languages can be used to write the framework class library, especially the data structure library, such as System.Collections.
|
| Extend compiler (pre compile) | 11 May 2006 01:46 GMT | 4 |
I would like to solve the problem of method parameter verfication in order to avoid to writing repetitive code to validate method parameters, for example: void method(object param) {
|
| Major memory leak in sos.dll under .NET Framework 2.0 | 10 May 2006 10:10 GMT | 19 |
I have tried to use sos.dll together with the WinDbg debug engine to perform some automated retrieval of runtime data. Unfortunately, there seems to be a major memory leak in the version of sos.dll that is shipped with .NET Framework 2.0. Each time an sos command is executed, e.g ...
|
| Locating thread locking issues | 08 May 2006 22:29 GMT | 2 |
I have a multi threaded app that seems to have a thread locking issue. Are there any tutorials and tools that describe how to go about tracking this ? I looked at the CLR profiler but that seems to be focussed more on the heap and memory usage.
|
| How to find screen resolution (DPI) ? | 07 May 2006 23:20 GMT | 2 |
Is there some place to find out what the display screen resolution is in dots per inch? So far the only way that is close is to look at SystemInformation::CaptionHeight and compare the size of the caption in pixels at different screen
|
| Attribute called by compiler during compilation to modify compiler output? | 05 May 2006 13:20 GMT | 2 |
I suspect it's unlikely, but you'll never know until you ask, but are there any attributes that would allow us to contribute to the compiled output? e.g. // this class exists in a separate, compiled assembly for the compiler to load during compilation
|
| CodeDom : How do I initialize this array? | 05 May 2006 01:15 GMT | 1 |
I am using C# CLR 2.0 CodeDom: I need to create the following array: SqlParameter[]sqlParameters={ new SqlParameter("@invID", SqlDbType.Int, 4, "invID"),
|
| CodeDom : CLR 2.0 Question | 05 May 2006 01:13 GMT | 1 |
I am using C# 2.0 and the CodeDom. Can someone answer the following 3 questions about the CodeDom in CLR 2.0. 1. I understand that there is no while() loop, only for( ; ; ) loop, can anyone confirm this.
|
| Working with Multiple CPUs | 05 May 2006 01:02 GMT | 5 |
I am trying to find additional information on how the CLR works with multiple CPUs in .net 2.0 framework. Is it enabled by default? Can I spawn multiple appDomains on specific CPUs or does it only relate to multithreading?
|
| Reflection on Interfaces and inherited members | 04 May 2006 19:11 GMT | 4 |
I'm having some troubles with unit tests that use mocks of interface types. I'm mocking an interface type that inherits some members. The mock framework attempts to verify the method I'm trying to mock is on the type it's mocking and fails. The framework is not using any binding ...
|
| copying stream - advise needed | 04 May 2006 10:58 GMT | 11 |
Iv'e seen two ways of copying streams in .net: Stream outStream = MemoryStream(); Stream inStream = CreateSomeMemoryStream(); byte[] buffer = new byte[inStream.Length];
|
| Detecting "this XXX in not supported by this YYY" via reflection? | 04 May 2006 06:44 GMT | 4 |
Is there a way to tell via reflection whether a class does not support an event/method/property defined in a base class? For example, consider: WebBrowser Events:
|
| Reference a Service | 04 May 2006 05:17 GMT | 3 |
Let's say I have a Service running on my machine, that has a full object model of some kind. From an external process, such as a Win application or Console application, I'd like to be able to do something like: MyService ms = MyService.GetInstance();
|