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] …
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 …
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 …
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
17
votes
How to correctly unregister an event handler
The C# compiler's default implementation of adding an event handler calls Delegate.Combine, while removing an event handler calls Delegate.Remove:
Fire = ( …
3
votes
How do I add a custom XmlDeclaration with XmlDocument/XmlDeclaration?
What you are wanting to create is not an XML declaration, but a "processing instruction". You should use the …
4
votes
Location of Third Party Dll’s in Version Control for .NET Project
We use the following directory structure:
Solution\
Libraries\
third-party DLLs here
Source\
Project1\
Project2\
Each project references (using the …
1
vote
Watching Global Events created by a native process in a .NET process.
ThreadPool.RegisterWaitForSingleObject can be used to execute a callback when the event is signalled. Obtain a Wai …
1
vote
where did my memory go? large private bytes count
I had a similar problem in a WPF application, and used UMDH to track …
2
votes
Reasons for seeing high” % Time in GC” in Perf Mon
Yes, this does sound excessive. Reducing the amount of GC would probably be the single best step you could take to reducing the runtime of your application (if that is your goal).
A high "% …
2
votes
.NET: Large revision numbers in AssemblyVersionAttribute
We decided to use the same convention, and due to the limitations of Windows version numbers we chose to drop the "micro" part of our version numbers in order to preserve the revision number. Our v …
4
votes
Vista - Program crash notification
I'm not familiar with such an API, but Windows Vista did introduce three major areas of functionality that might be what you're thinking of:
…
