5
votes
Other than for LINQ queries, how do you use anonymous types in C#?
With a bit of reflection, you can turn an anonymous type into a Dictionary<string, object>; Roy Osherove blogs his technique for this here: …
7
votes
How do I LINQify this?
You could use Enumerable.Range, like so:
List<Car> result = Enumerable.Range(0, Math.Min(makes.Count, models.Count))
.Select(i => new Car { Make = makes[i] …
5
votes
Possible pitfalls of using this (extension method based) shorthand
We independently came up with the exact same extension method name and implementation: Null-propagati …
5
votes
Simple WPF sample causes uncontrolled memory growth
I was able to reproduce your problem using the code you provided. Memory keeps growing because the Canvas objects are never released; a memory profiler indicates that the Dispatcher's ContextLayout …
3
votes
Use Windows API from C# to set primary monitor
According to the documentation for ChangeDisplaySettingsEx, "the dmSize member must be initialized to the s …
7
votes
How can you see the sql that is causing an error on SubmitChanges in LINQ to SQL?
A simple way to do this is to use the DataContext.Log property:
using (MyD …
5
votes
Are there problems with rendering WPF over Remote Desktop under Windows XP?
As of .NET 3.5 SP1, all WPF graphics are remoted as bitmaps, even on Vista-to-Vista communication. From …
6
votes
Best way to reverse a string in C# 2.0
If the string contains Unicode data (strictly speaking, non-BMP characters) the other methods that have been posted will corrupt it, because you cannot swap the order of high and low surrogate code …
2
votes
Memory Leaks in C# WPF
.NET Memory Profiler is an excellent tool, and one that I use frequently to diagnose memory leaks in WPF applications.
As I'm sure you're aware, a good way to use it is to take a snapshot b …
4
votes
Is it possible to write Quake’s fast InvSqrt() function in C#?
Use BitConverter if you want to avoid unsafe code.
float InvSqrt(float x)
{
float x …
7
votes
.net SqlConnection not being closed even when within a using { }
The SqlProvider used by the LINQ DataContext only closes the SQL connection (through SqlConnectionManager.DisposeConnection) if it was the one to open it. If …
2
votes
C# Reading back encrypted passwords
To securely store a password so that it can be read back, use the ProtectedData …
4
votes
SOAP Client in C# without access to a WSDL-file
If you write a class that derives from System.Web.Services.Protocols.SoapHttpClientProtocol (and has the correct attributes, e.g., WebServiceBinding, SoapDocumentMet …
1
vote
Can I a implement DisposeBase abstract class?
As Marc Gravell said, you only need a finalizer if you are handling unmanaged objects. Introducing an unnecessary finalizer in a base class is a bad idea, as per the reasons in section 1.1.4 of the …
6
votes
