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.
Programming with C# - - 101
Take a first look at programming with C#. This article shows you the process and steps to program your first C# application...
A Beginner's Guide to Pointers
Pointers are basically the same as any other variable. However, what is different about them is that instead of containing actual information, they contain a pointer to the memory location where information can be found. This is a very important concept,...
Lesson 3: Loops
Loops are used to repeat a block of code. You should understand the concept of C++'s true and false, because it will be necessary when working with loops.There are three types of loops: for, while, (and) do while. Each of them has their specific uses. The...
Algorithm for Detecting Duplicate/Previously Encountered Strings
A challenge I've seen pop up often while writing search tools is the ability to verify that your code is not traversing the same source multiple times. A spider traversing the web, for example, would never wish to traverse the same URL twice in a session...
Get started coding C# in ASP .Net
Microsoft takes Active Server Pages to a new level with ASP .Net and C#. Learn the basics of this new language...
An Exceptional Quest
An in depth discussion of C++ exceptions, and how to write exception-safe code when using them...