User Profile

Collapse

Profile Sidebar

Collapse
Niloo
Niloo
Last Activity: Mar 12 '12, 09:28 PM
Joined: Dec 9 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Niloo
    started a topic Listbox doesn't show data

    Listbox doesn't show data

    I should show this _customers to list box:

    Code:
    public Customer GetCustomer(int index)
            {
                return (Customer)_customers[index];
               
            }
    so I used:
    Code:
            private void UpdateCustomerList()
            {
                lstCustomer.Items.Clear();
                for (int index = 0; index <= (_customerMngr.count-1); index++)
    ...
    See more | Go to post
    Last edited by Niheel; Dec 11 '11, 10:45 PM. Reason: code tatgs

  • Niloo
    started a topic Override

    Override

    Hwo can I convert this part of c# code to string?
    public Customer GetCustomer(int index)
    {
    return (Customer)_cust omers[index];
    }
    I think I should use override but i dont know how?
    thanks
    See more | Go to post
No activity results to display
Show More
Working...