C#/C++ Tutorials - Improve your understanding of C# .Net
Welcome to the C#/C++t tutorial pages on Softwaresourcer.com - here you can find tutorials, help and information on C#/C++ and related languages from all over the internet. If you have any questions about C#/C++ programming or would like .Net Development done for your company please complete ourfree IT quotes form. If you are a company who takes on C#/C++ projects and would like to receive leads from people looking for C#/C++ or other .Net work please complete ourIT suppliers partner form.
Performance Implications of Managed Data
When using Managed C++, be aware that boxing and unboxing values so that you can use the Base Class Libraries carries a performance cost...
C++: Removing duplicates from a range
Removing duplicates from ranges is a fairly common task in C++, but the std::unique algorithm in the Standard Template Library (STL) has some limitations. Find out how to work around them...
Printing Using C#
In this article Matthew shows us how to build a print engine in C# allowing us to print our application data easily...
Interface, IEnumerable and IEnumerator in C#
The concept of an interface is an important element in object-oriented programming. It's what makes OOP so structured but flexible at the same time. By creating interfaces and implementing interfaces, your applications become more reusable and open. Here,...
Building A SOAP Client With Visual C++
In this article, I'll show you how to build a SOAP client using Visual C++. This tutorial gives you a hands on introduction to using the SOAP API. SOAP (or Simple Object Access Protocol) is emerging as a very popular protocol for exchanging information ac...