Search code examples
c#stringdata-collection

C# : Data collection to keep string?


Any Data Collection to keep the strings? I want to know any other data collection that can keep string, because enum cannot keep string.


Solution

  • List<string>
    

    Or

    StringCollection
    

    Should do...

    http://msdn.microsoft.com/en-us/library/system.collections.specialized.stringcollection.aspx

    http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx