I figure I'm just using the wrong description of what I want and that's why I can't find an answer, but essentially I want to do the following:
// Go from this
List<string>[] myvar = new List<string>()[5];
myvar[4].Add("meow");
// To this
LString myvar = new LString();
myvar.Add("meow");
I initially tried doing a class public class LString : List<string>()[]
, but that isn't really valid syntax, so I didn't really know where to go from there.