control array for labels in c#

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • praveen007
    New Member
    • Oct 2007
    • 1

    control array for labels in c#

    how to create control array for label controls in c# .net
  • Plater
    Recognized Expert Expert
    • Apr 2007
    • 7872

    #2
    Just like any other array?

    So to make an array of 10:
    Code:
    Label[] mylabelarray = new Label[10];

    Comment

    Working...