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

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -