Do NOT use for questions about .NET Core - use [.net-core] instead.
I know that attributes are extremely useful. There are some predefined ones such as [Browsable(false)] which allows you to …
c# .net .net-attributesI have a string of text like so: var foo = "FooBar"; I want to declare a second string called bar …
.net resharperIs there an equivalent to app.config for libraries (DLLs)? If not, what is the easiest way to store configuration …
c# .net dll settings app-configI am trying to override the default SqlConnection timeout of 15 seconds and am getting an error saying that the property …
c# .net sql-server sqlconnectionI have a piece of code here that breaks if the directory doesn't exist: System.IO.File.WriteAllText(filePath, content); …
c# .net file-ioI have an asp.net webapplication that uploads files to a specific folder on the Web server. locally everything works …
c# asp.net .net asp.net-4.0 windows-server-2008-r2I have a Parallel.ForEach() async loop with which I download some webpages. My bandwidth is limited so I can …
c# .net asynchronous parallel.foreachExpanding upon my earlier problem, I've decided to (de)serialize my config file class which worked great. I now want …
c# .net serialization dictionary