| .NET Data Persistence: SQL Server vs. Matisse vs. FastObjects |
| The Code Project |
| An article with source code examining the development speed and performance capability of .NET, Matisse and FastObjects |
|
| .NET Scheduled Timer |
| The Code Project |
| A timer that easily supports absolute schedules like run at 4:00 AM every day or at 5:00 PM on Fridays |
|
| A basic Particles System |
| The Code Project |
| Introduction to the basic idea of the particles systems, and how to create basic effects such as explosions and water fountains |
|
| A C# Grep Application |
| The Code Project |
| Presenting a small C# Application which is providing a Grep like functionality under .NET. |
|
| A C# Web Spider written as a Web Service |
| C#Today |
| A Web Spider is a program that is used to navigate sites, follow links and collect various information. It is sometimes called a Web Robot. In this article. ST Tan & Aldy Karna discuss the subject, and show how a Web Spider can be written in C#. |
|
| A Data Access Layer to Persist Business Objects Using Attributes and Reflection |
| The Code Project |
| Then I came up with the idea of creating classes that would say how they should be persisted in the database. I would use attributes to say what database table my object should be persisted to, as well as other attributes to say what are the properties that should be mapped to table columns. From now on to update my code after a change in the solution I would only change the business object class. |
|
| A Dictionary Collection Sorting By Value |
| The Code Project |
| An article on creating a custom collection like the SortedList that sort entries by value instead of by key |
|
| A First Look at ObjectSpaces in Visual Studio "Whidbey" |
| MSDN |
| An interesting new feature in Visual Studio "Whidbey" is ObjectSpaces, an Object/Relational mapping tool fully integrated with ADO.NET. You design application features using objects, and ObjectSpaces reads and writes to data sources using SQL statements. |
|
| A generic Set type for .NET |
| The Code Project |
| Provides a generic set collection. |
|
| A Generic, Reusable Diff Algorithm in C# - II |
| The Code Project |
| A reusable difference engine written in C#. |
|
| A Generic, Reusable Diff Algorithm in C# - II |
| The Code Project |
| A reusable difference engine written in C# |
|
| A LargeListDictionary Implementation |
| The Code Project |
| Implementation of a list accessible by key with Hashtable-like performance |
|
| A Matter of Context |
| MSDN |
| ASP introduced several intrinsic objects like Request and Application to help track the context for an HTTP request. ASP.NET takes the next step and bundles these objects, plus several additional context-related objects into an extremely handy intrinsic object called Context. Context is an object of type System.Web.HttpContext. It is exposed as a property of the ASP.NET Page class. It's also available from user controls and your business objects (more on that later). |
|
| A null ArrayList member is initialized to a zero length ArrayList class after it is deserialized |
| Microsoft Support |
| (815105) - When you serialize an object that contains a null ArrayList class object as a public member, as expected the tags for the ArrayList class member is not present in the serialized XML file. However, after deserialization, you may notice that the... |
|
| A null ArrayList member is initialized to a zero length ArrayList class after it is deserialized |
| http://www.kbalertz.com/ |
| (815105) - When you serialize an object that contains a null ArrayList class object as a public member, as expected the tags for the ArrayList class member is not present in the serialized XML file. However, after deserialization, you may notice that the... |
|
| A POP3 Client and C# |
| C#Today |
| In this article, Levent Camlibel looks at how to create a POP3 client that recieves e-mail from a POP3 server, showing how the .NET platform allows this project to be created in a very short space of time. Over the course of the article, he looks at POP3 standards, .NET network programming, and custom POP3 objects. |
|
| A Practical Guide to .NET DataTables, DataSets and DataGrids - Part 4 |
| The Code Project |
| The purpose of this document is to provide a practical guide to using Microsoft’s .NET DataTables, DataSets and DataGrid |
|
| A ServiceInstaller Extension That Enables Recovery and Autostart Configuration |
| The Code Project |
| An extension assembly that allows configuring the "advanced" service configuration options for recovery actions. |
|
| A Simple But Useful Example of .NET Remoting Part 2 |
| The Code Project |
| Introduces .NET remoting via a simple but potentially useful example. |
|
| A simple C# Scrolling AboutBox Control |
| The Code Project |
| Describe how to create a simple scrolling aboutbox usercontrol with C#. The control can manage its display object list including text or image. |
|
| A Simple C# Toolbar Docking Framework |
| The Code Project |
| An example framework for toolbar handling, written in C#. |
|
| A simple RadioButtonList in a Web DataGrid Column |
| The Code Project |
| A very simple and practical way, how a single RadioButton acts as a RadioButtonList in a web DataGrid server control column. |
|
| A simple string to value parser |
| The Code Project |
| A simple string to value parser |
|
| A Simple Usage of Reflection |
| DotNetJunkies |
| Xico takes a quick look at what Reflection is all about and explains what it can do for you. |
|
| A Small Data Class |
| FLWS.com.au |
| This is a small code sample to demonstrate how simply you can create an array and use it as the DataSource for a ListBox control. More than that though, I'd like you to pay close attention to the small Class called ListData that serves as a Data Class. I saw a Class similar to this one used in an example on MSDN, and, because I can never find anything twice on MSDN, thought that I'd better document it here on ShowUsYourCode. |
|