Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

how to fill dictionary in c#

private readonly Dictionary<string, XlFileFormat> FILE_TYPE_DICT
        = new Dictionary<string, XlFileFormat>
        {
            {"csv", XlFileFormat.xlCSV},
            {"html", XlFileFormat.xlHtml}
        };
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #fill #dictionary
ADD COMMENT
Topic
Name
1+1 =