If you need to call a web method but fail to have a WSDL or want your code to be dynamic, then SOAP and `HttpWebRequest`s are the way to go.
What's the right way, on Visual Studio, to call an external web service, without WSDL, ASMX or adding a web reference? Solution: make a C# SOAP request!
A code example in C# to exchange images through the internet using an XML payload. Convert your byte[] image to a text representation like base64.
Code examples in C# about converting byte[] to base64 and SQL Server's varbinary. This allows you to save images to your DB and get them back again.
This tutorial explains how you can use VisualStudio's build configurations to compile differently for separate clients. Refactor your code using #if syntax.
When daily delivering binaries, you must embed SVN's revision number into your binaries' version number. TortoiseSVN and Visual Studio do the work for you.
An executable that enables you to troll someone by: showing a message, opening a new tab on a specific URL, opening the disks drive several times and more!
What's the best way to call a REST API on C#? I'll review the 4 main classes (RestSharp included) to make requests and process their responses.