Search Results

2
votes
3answers
230 views

Why is Predicate<> sealed?

I wanted to derive a class from Predicate<IMyInterface>, but it appears as if Predicate<> is sealed. In my case I wanted to simply return the inverted (!) result of the designated function. I …
1
vote

C# and .NET FOLDERID

This morning I read about Vista Bridge. It may help. "Many of you don’t know about the Vista Bridge sample library, what can it do or even where you can find it. Let’s start with the basic …
0
votes

When would you use delegates in C#?

The comparison param in In Array.Sort(T[] array, Comparison comparison), List.Sort(Comparison comparison), etc …
0
votes

operators as strings

MS has a sample called Dynamic Query Library. It is provided by the LINQ team to dynamically construct LINQ queries such as: Dim query = Northwind.Products.Where("CategoryID=2") You might check t …
-1
votes

Set same icon for all my Forms

I'm not sure if the MS VS designer can deal with Forms that don't derive directly from Form. If not then you may try to copy the main form's icon to all other forms: for each form in Forms collecti …
0
votes

Which Version of StringComparer to use

System.Collections.Specialized includes StringDictionary. The Remarks section of the MSDN states "A key cannot be null, but a value can. The key is handled in a case-insensitive manner; it …
0
votes

How can I find the method that called the current method?

Another approach I have used is to add a parameter to the method in question. For example, instead of void Foo(), use void Foo(string context). Then pass in some unique string that indicates the ca …
0
votes

Finding an unmanaged dll API?

I read a blog about PInvoke Interop Assistant, which can deal with our own DLLs as well http …
0
votes

Marshal C++ struct array into C#

The PInvoke Interop Assistant may help. http://www.codeplex.com/clrinterop/Release/ProjectRe …
0
votes

== or .equals()

I have seen Object.ReferenceEquals() used in cases where one wants to know if two references refer to the same object …
1
vote

Convert IDictionary<string, string> keys to lowercase (C#)

System.Collections.Specialized.StringDictionary() may help. MSDN states: "The key is handled in a case-insensitive manner; it is translated to lowercase before it is used with the string di …
0
votes

Best way to track down a memory leak (C#) only visible on one customer’s box

PerfMon can be helpful (http://dotnetdebug.net/2005/06/30/perfmon-your-debugging-buddy/). There are seve …
0
votes

Alternative to String.Replace

Maybe you can reduce this down to a couple of lines, if desired, by using a Lambda expression and List<>.ForEach. using System.Collections.Generic; namespace ReplaceWithSpace { …
4
votes

Using P/Invoke correctly

The Managed, Native, and COM Interop Team released the PInvoke Interop Assistant on codeplex. Maybe it can create the proper signature. …
0
votes

Memory AccessViolationException Error Calling DLL From C#

It may be the [DllImport]. If you post the [DllImport] signature, and the DLL's ptototype, maybe we can spot a problem. I read that the Managed, Native, and COM Interop Team released the PI …

1 2 next
15 30 50 per page