This tutorial explains what a jagged array by giving an example that shows you how set and retrieve values.
Handling and throwing exceptions
You’ll learn the basics of handling and throwing exceptions. Uses examples to demonstrate.
Method for resizing pictures with aspect ratio
The GenerateThumbnail() C# function resizes pictures for various formats, such as JPEG, PNG and BMP, and maintains their aspect ratio.
Converting Word Documents to RTF, HTML, TXT, XML
In this tutorial you’ll learn how to open and convert Word documents (.doc) to the popular formats RTF, HTML, TXT and XML. You will also find yourself learning the basics of operating with COM objects. Advertisement Opening and manipulating Microsoft Office Word documents (.doc) can be done rather easily using the .NET Framework. You are […]
Creating and consuming Web Services
Shows and explains you how to make an ASP .NET Web Service, an ASP .NET Web Application and how to consume the Web Service with the ASP .NET Web Application.
Using the URI Class
Shows you how to parse a URI using the URI class and how to form an absolute URI from a base URI and a relative URI.
Resize Image With Aspect Ratio
A C# method that resizes pictures and maintains their aspect ratio, optionally only if a maximum width is exceeded. The method works with both images that have a higher height than width and viceversa.
All about strings
How to compare two strings, reverse a string, search in a string and many other techniques, each with examples.
Using the Windows Registry
The most important things you need to do with the registry – creating, accessing editing and deleting SubKeys and values.
C# data types
Quickly covers C#’s data types by giving a few examples. Good for transition between C or C++ to C#.