Do NOT use for questions about .NET Core - use [.net-core] instead.
From my understanding one of the main things that async and await do is to make code easy to write …
c# .net asynchronous async-awaitI am working on a WPF, C# 3.0 project, and I get this error: Error 1 Metadata file 'WORK=- \Tools\VersionManagementSystem\…
c# .net wpf visual-studio-2008 c#-3.0I want to do something like: MyObject myObj = GetMyObj(); // Create and fill a new object MyObject newObj = myObj.Clone(); And …
c# .net cloneHow can you enumerate an enum in C#? E.g. the following code does not compile: public enum Suit { Spades, …
c# .net loops enums enumerationI have a StreamReader object that I initialized with a stream, now I want to save this stream to disk (…
c# .net streamI'm having another of these "Could not load file or assembly or one of its dependencies" problems. Additional information: Could …
c# .net reference compiler-errorsIs there a way to deserialize JSON content into a C# 4 dynamic type? It would be nice to skip creating …
c# .net json serialization dynamicHow can I generate a random 8 character alphanumeric string in C#?
c# .net random