.NET Development Articles and Samples
The Code Zone is where you will find Articles and example
code relating
to programming and software development. It acts as a knowledge
base providing
tips on how to get started in a certain area or improve your
knowledge if you
are already up and running.
Latest articles
This article continues from Learn
Regular Expression (Regex) syntax with C# and .NET and covers
character escapes, match grouping, some C# code examples, matching
boundaries and RegexOptions.
Web.config and App.config have can have many different
configuration
options but it is difficult to remember what some of the less commonly
used options are. This article provides a schema definition for .NET
configuration files such as Web.config and App.config
that makes Visual
Studio .NET help you out by displaying intellisense when working in these files.
Regular Expressions are a powerful pattern
matching language that are part of many modern programming
languages. Learning the syntax for Regular Expressions allows
you to use the pattern matching features found in many
programming languages, software development packages and text
editors. This article introduces you to the basics of the
Regular Expression syntax.
Would you Like to have intellisense when you are working with
XSL documents in
Visual Studio .NET? This article talks about how is
done and provides a downloadable file for Visual Studio .NET.
Discusses some considerations when designing a Data Access Layer
in C#.
Applications such as GetRight
and ClipMate seem to
magically know when something is copied to the Clipboard. How is
it done? This
example shows you how to use the Win32 API function
SetClipboardViewer()
to create a Clipboard viewer application. A sample written in C#
is included.
Learn how to use the CommandBuilder class to write cleaner and
more readable
Database Access code by using the CommandBuilder to
automatically build SQL
INSERT, UPDATE, and DELETE statements for a DataAdapter.