Introduce DataBase,Asp.net,JavaScript,Xml,Html,Css,Sql,Php,ASP.NET Controls,AJAX,Tools,HTML,CSS,JavaScript,Open Source Project,WPF,.Net Framework,Linq
Top Recommended Hosting

Review of DataSets

by the3factory 5/4/2008 7:05:00 AM
The DataSet type is a complex in-memory container for data. The DataSet class contains a collection of DataTable instances that contain the relational data stored in a data set. Each DataTable instance contains a collection of DataColumn instances that define the schema of the data within the table,... [More]

Review of DataSets

by the3factory 5/4/2008 7:05:00 AM
The DataSet type is a complex in-memory container for data. The DataSet class contains a collection of DataTable instances that contain the relational data stored in a data set. Each DataTable instance contains a collection of DataColumn instances that define the schema of the data within the table,... [More]

Data Objects and Collections

by the3factory 5/4/2008 7:01:00 AM
Data sources in a Windows Forms application are composed of object instances. A data source may be a single instance of a single object, or it may be a collection of object instances, where the collection itself is an instance of a container object. Those instances may be of almost any type, includi... [More]

Data-Binding Landscape

by the3factory 5/4/2008 6:58:00 AM
A number of things come into play to make data binding happen. First, you need the data. From the perspective of a presentation layer client application, this comes in the form of in-memory data sources. You need controls or components that are designed to work with that data to automatically presen... [More]

WMI Provider Extensions in .NET 3.5

by the3factory 5/3/2008 8:08:00 PM
Download code Windows Management Instrumentation (WMI) is a C&C infrastructure that is integrated within Windows. It provides three primary capabilities: Exposing state information regarding a configurable entity Invoking control methods on a configurable entity Publishing even... [More]

Enumerable Enumerator and Yielding a "Free" State Machine.

by the3factory 4/15/2008 6:35:00 PM
Enumerator -- A State Machine. A  .NET 1.0 enumerator is basically a state machine object that implements the following interface: public interface IEnumerator {     object Current { get; }     bool MoveNext();     void Reset(); } The current... [More]

Enumerable Enumerator and Yielding a "Free" State Machine.

by the3factory 4/15/2008 6:32:00 PM
Enumerator -- A State Machine. A  .NET 1.0 enumerator is basically a state machine object that implements the following interface: public interface IEnumerator {     object Current { get; }     bool MoveNext();     void Reset(); } The current... [More]

DateTimePrecise class in C#

by the3factory 4/11/2008 1:35:00 AM
The .NET Framework provides two ways to sample the current time: DateTime.Now and Diagnostics.Stopwatch.GetTimestamp(). DateTime.Now is accurate—it tells you the current time—but it only has 16 millisecond precision. Stopwatch.GetTimestamp() is as precise as your CPU instruction counter and can di... [More]

Useful Generic Array Functions

by the3factory 4/11/2008 1:33:00 AM
The standard .NET Framework offers quite a few generic functions to munipulate arrays, however there are some functionalities where extra code will be needed such as Appending to the array, removing an element from the array, or removing all elements that fall under a condition. Background Sho... [More]

C# access modifiers quick reference

by the3factory 4/9/2008 6:35:00 AM
Download code   Introduction This is a very small article to illustrate C# access modifiers. This article is for beginners but even if you are an expert this article may be useful as a quick reminder when the brain cells slow down - hey, I will probably need it soon.   Definitio... [More]

Simple Example demonstrating MSMQ Message Routing

by the3factory 4/8/2008 6:03:00 AM
Introduction Disconnected Enterprise Applications are difficult to design, especially when data is critical. There are several methodologies available but not all of them fit well. Some of the possible implementations may include Web Services, Message Queuing, Enterprise Service Bus (ESB) architect... [More]

Using Codesmith and .netTiers to build a Data Access Layer

by the3factory 4/7/2008 3:06:00 AM
Some time ago, I have involved in a National Energy company information system (CIS) development. It is actually the project developed by my company and I am a junior of the developer team. We start it by explaining and discussing about all the detail and requirement of database because th... [More]

Extending The String Class

by the3factory 4/6/2008 10:35:00 PM
Download code    while ago I wrote an article on a strategy for extending the string class in the .NET Framework.  The problem with extending many .NET 2.0 classes was that they were sealed, so you could not inherit from them, making extending them painful.  Well it looks like ... [More]

Tree structured enumerations

by the3factory 4/2/2008 6:49:00 PM
Download code   In this article I want to show you an approach of how can a structured enumeration be handled by the C#. Background While playing with my little home project I stumbled upon a problem of having all those category enumerations displayed in a tree. I wanted to keep it simpl... [More]

Tags:

.Net Framework | C#

Dynamic, Object to Object Converter

by the3factory 4/2/2008 6:48:00 PM
In this article I hope to show you how to use attributes to create a dynamic converter so that you do not need to create a new converter for every conversion. I developed this to facilitate me in converting a DTO object to a Domain (Entity) object. What this article assumes you know or have: ... [More]

Q&A:

More



Powered by BlogEngine.NET 1.2.0.0