CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: contactshree

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    924

    Re: Return and IF statement error?

    Whatever DataMiser saying correct. Variables will loose its scope once coming out of the {}. But do remember that any local variable in .Net should have assigned values to use that variables. We...
  2. Replies
    8
    Views
    18,707

    Re: Convert Generic List To Dataset

    Thanks for the reply. This is my first post, I missed it.



    public static DataTable ConvertTo<T>(IList<T> genericList)
    {
    //create DataTable Structure
    ...
  3. Replies
    8
    Views
    18,707

    Re: Convert Generic List To Dataset

    Hi,

    There is an way to convert a generic collection to datatable. With this you can populate a datatable with columns (properties of the collection) and rows (values of the properties).

    Here...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured