Search Results

10
votes

Deleting items from one collection in another collection

Here are two options. Not sure which one is faster. listB.RemoveAll(listA.Contains); foreach (string str in listA.Intersect(listB)) listB.Remove(str); …
6
votes

Is there an alternative to string.Replace that is case-insensitive?

From MSDN $0 - "Substitutes the last substring matched by group number number (decimal)." In .NET Re …
5
votes

WPF: How to apply a GeneralTransform to a Geometry data and return the new geometry?

You could try and use Geometry.Combine. It applies a transform during the combine. One catch is that Combine only works if your Geometry has area, so single lines will not work. Here is a s …
3
votes

When can I dispose an IDisposable WPF control e.g. WindowsFormsHost?

In the case of application shutdown there is nothing you need to do to properly dispose of the WindowsFormsHost. Since it derives from HwndHost disposing is handled when the Dispatcher is shutdown. …
7
votes

Calculate the display width of a string in C#?

In WPF you would use FormattedText. …
1
vote

WPF: Eliminate transparency between grid cells.

Without seeing any code my guess is that you need SnapsToDevicePixels on the e …