Do NOT use for questions about .NET Core - use [.net-core] instead.
I have an array of Foo objects. How do I remove the second element of the array? I need something …
c# .net arraysHow can I read a connection string from a web.config file into a public class contained within a class …
c# .net asp.net web-config connection-stringI was wondering what were the differences between those declaration of getters and setters and if there is a preferred …
c# .net visual-studio-2010I am trying to use the Directory.GetFiles() method to retrieve a list of files of multiple types, such as …
c# filesystems .netWhat it's the best way to generate a string of \t's in C# I am learning C# and experimenting with …
c# .net stringIs it possible to convert two or more lists into one single list, in .NET using C#? For example, public …
c# .net listI have a procedure in SQL that I am trying to turn into Linq: SELECT O.Id, O.Name as …
.net linq tsql linq-to-entities sql-like