Do NOT use for questions about .NET Core - use [.net-core] instead.
When debugging in Visual Studio, sometimes I add a breakpoint but it's hollow and VS says "The breakpoint will not …
.net visual-studio debuggingIn C#, the result of Math.Round(2.5) is 2. It is supposed to be 3, isn't it? Why is it 2 instead in …
.net roundingHow do I mark a method as obsolete or deprecated using C#?
c# .net versioning deprecatedHow to SELECT a drop down list item by value programatically in C#.NET?
c# .net drop-down-menuIs there a way to create an instance of a class based on the fact I know the name of …
c# .net instantiation system.typeCan you recomend any PDF API for C#. Free is the best, but I don't mind paying for it.
c# .net api pdf-generationI'm using an API client that is completely asynchrounous, that is, each operation either returns Task or Task<T&…
c# .net task-parallel-library async-await c#-5.0Is there a way to make this method generic so I can return a string, bool, int, or double? Right …
c# .net generics return-typeSuppose I have a XmlNode and I want to get the value of an attribute named "Name". How can I …
c# .net xml