c# - Set List Initial Size -
how set initial size of list of object type in .net using c#, ability insert allocated objects @ specified index?
this can done array:
string[] sa = new string[99]; sa[71] = "g";
which happens implement ilist interface.
Comments
Post a Comment