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

Search:

Type: Posts; User: post98

Search: Search took 0.03 seconds.

  1. Replies
    7
    Views
    1,521

    Re: Array index out of Range

    Your mistake is in while loop
    Use this code



    static public void sort( int []a, int n)
    {
    //sorts the input array a using the Insertion sort algorithm
    int j;
    int t;
  2. serialize & Deserialize entities without using Generics & Reflection?

    I have 2 entities (student, course) that I want to serialize & deserialize without using Generic & Reflection.

    This would be in a project three layers and using .NET 1.0.

    Any ideas?

    I do...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured