User Profile

Collapse

Profile Sidebar

Collapse
Lucent2418
Lucent2418
Last Activity: Sep 5 '07, 02:54 PM
Joined: Jul 27 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Lucent2418
    replied to Two-Dimensional Array
    in .NET
    Thanks. I've rearranged the code and it now returns data. This is an arraylist made up of several arraylists.

    How could I organize the data to return in this manner:

    A1x
    B2x
    C3x
    and so on.

    Code:
    ArrayList data;
    ArrayList Data = new ArrayList();
    DatabaseAccessLayer DAL = new DatabaseAccessLayer();
    data = DAL.getData();
     
    for(int i=0; i<data.Count;
    ...
    See more | Go to post

    Leave a comment:


  • Lucent2418
    started a topic Two-Dimensional Array
    in .NET

    Two-Dimensional Array

    I am trying to return a two-dimensional array with data but am having some problems retreving the data. Can someone guide me what I should change in this code?

    Thanks

    Code:
    public ArrayList getData()
    {
    	ArrayList data = new ArrayList();
    	ArrayList myList1 = new ArrayList();
    	ArrayList myList2 = new ArrayList();
    	int i;
            
    	for(i=0; i<5; i++)
    	{
    		i++;
    ...
    See more | Go to post

  • Lucent2418
    started a topic Simple
    in .NET

    Simple

    I'm new to c# programming. Can someone help me identify how to make the line in bold an instance of an object? I can't tell if oClxX or strNewstCust need to be made an instance. Thanks.

    Assembly assem = Assembly.LoadFr om("C:\\Downloa der.dll");
    Type typClsX = assem.GetType(" Downloader.File ",true);
    object oClsX = Activator.Creat eInstance(typCl sX);
    MethodInfo miGncn = typClsX.GetMeth od("GetNewestCu stomerName",new...
    See more | Go to post
No activity results to display
Show More
Working...