|
|
|
|
|
home > code > c# & .net fundamentals |
|
C# .NET Framework Fundamentals Archive
The code in this section illustrates .NET fundamentals and how to use the
framework and C# to get work done. The .NET framework
has classes to do most everything you'll need to do
for a lot of common tasks... the biggest problem you'll have is that there
are so many classes, it's like information bombardment. The goal of this section
is to provide short and sweet examples illustrating technique where most of the useful information
is in the source code. I would consider everything in this section to be the basics of
C# programming with the .NET framework. Most of these code bits can be used in any type of app:
ASP.NET, class libraries, GUI or console applications.
HOW TO: create a reservation in the MS Outlook calendar
HOW TO: read a file a bunch of different ways using the .NET framework
HOW TO: read and write an xml file programmatically with the .NET Framework
HOW TO: roll your own Windows Forms textbox control that offers autocomplete functionality for URLs and file paths
HOW TO: use MS Word to spell check a sentence
HOW TO: use the WinInet API to download a file from an FTP server
HOW TO: determine whether or not there is a connection to the Internet present on the local machine
HOW TO: convert a System.Runtime.InteropServices.FILETIME into a System.DateTime and back again
HOW TO: create and send an email WITHOUT using System.Web.Mail
|