One if the first things I learned when I started with C# was the most important one. You can decompile any .NET assembly with Reflector or other tools. Many developers are not aware of this fact and most of them …
Actually the question should be why does Console.WriteLine exist just to be a wrapper for Console.Out.WriteLine
I found this little method using intellisense, then opened .NET reflector and 'decompiled' the code for the Console.WriteLine method and …
Canonical
How can I make an HTTP request and send some data using the POST method?
I can do a GET request, but I have no idea of how to make a POST request.