Click here to Skip to main content
15,892,746 members
Articles / Programming Languages / C#

Convert a Generic List to a Datatable

Rate me:
Please Sign up or sign in to vote.
4.33/5 (6 votes)
23 May 2010CPOL3 min read 120.3K   3.3K   29  
A Generic List with a feature of converting itself to a DataTable
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

/// <summary>
/// Summary description for Product
/// </summary>
public class Product
{

    string strName;
    string strPrice;

    public string Name
    {
        get
        {
            return strName;
        }
        set
        {
            strName = value;
        }
    }

    public string Price
    {
        get
        {
            return strPrice;
        }
        set
        {
            strPrice = value;
        }
    }

    #region Constructor
    public Product(string name, string price)
    {
        Name = name;
        Price = price;
    }
    #endregion

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
I am a Bachelor of Engineering in Information Technology.

Comments and Discussions