Do NOT use for questions about .NET Core - use [.net-core] instead.
In the code below, due to the interface, the class LazyBar must return a task from its method (and for …
c# .net task-parallel-library async-await threadpoolI have read the documentation on this and I think I understand. An AutoResetEvent resets when the code passes through …
c# .net multithreading autoresetevent manualreseteventSay you need to have a list/array of integers which you need iterate frequently, and I mean extremely often. …
.net performance arrays generics listI have a method which is connecting to a database via Odbc. The stored procedure which I'm calling has a …
c# .net asp.net odbc boolean-logicWhat is the difference between IQueryable<T> and IEnumerable<T>? See also What's the difference between …
.net linq .net-3.5 ienumerable iqueryableWhat difference is there between the WebClient and the HttpWebRequest classes in .NET? They both do very similar things. In …
c# .net httpwebrequest webclientEager to know Differences between .NET 4.0 and .NET 4.5 in High level in .NET and also differences in ASP.NET, C# …
.net .net-4.0 .net-4.5I'm using the DbContext and Code First APIs introduced with Entity Framework 4.1. The data model uses basic data types such …
c# .net entity-framework ef-code-first dbcontextThere are a group of private methods in my class, and I need to call one dynamically based on an …
c# .net reflection private-methodsI have two objects of the same type, and I want to loop through the public properties on each of …
c# .net