Do NOT use for questions about .NET Core - use [.net-core] instead.
I was thrilled to see the new System.Collections.Concurrent namespace in .Net 4.0, quite nice! I've seen ConcurrentDictionary, ConcurrentQueue, ConcurrentStack, …
c# .net parallel-processing task-parallel-libraryI have a very simple WPF application in which I am using data binding to allow editing of some custom …
.net wpf data-binding validationI have two instances of IEnumerable<T> (with the same T). I want a new instance of IEnumerable&…
c# .net ienumerable concatenationHowdy, I'm having a bit of an issue runnning a NAnt script that used to properly build my .Net 2.0 based …
.net msbuildI have seen many tutorials on how to compress a single file in c#. But I need to be able …
c# .net winforms compression zipWhen creating a new ASP.NET application in Visual Studio, a couple of files and folders are created automatically. One …
asp.net .net visual-studio security app-dataI want to retrieve a list of all schemas in a given Sql Server database. Using the ADO.NET schema …
c# .net sql-server ado.netIn my classes I implement IDisposable as follows: public class User : IDisposable { public int id { get; protected set; } public string …
c# .net memory-management memory-leaks garbage-collection