C
Chuck Bowling
I have a list:
List<RichTextBox> rtb;
That represents an NxM matrix of rtb's. Is there some way to initialize a
generic that will allow me to access the List like a multidimensional array
i.e.;
rtb[2, 3].Text = "some text";
List<RichTextBox> rtb;
That represents an NxM matrix of rtb's. Is there some way to initialize a
generic that will allow me to access the List like a multidimensional array
i.e.;
rtb[2, 3].Text = "some text";