Is there any good way to convert strings like "xlSum", "xlAverage", and "xlCount" into the value they have under Microsoft.Office.Interop.Excel.XlConsolidationFunction?

I guess reflection would be slow (if its possible). There are about 10 of these constant values. I was trying to avoid a large switch statement if possible.

link|improve this question

71% accept rate
feedback

2 Answers

up vote 5 down vote accepted

This is an enum so you should be able to use

using Microsoft.Office.Interop.Excel;

XlConslidationFunction func = (XlConsolidationFunction)
                               Enum.Parse( typeof(XlConsolidationFunction),
                                           stringVal );
link|improve this answer
You'll need a cast between "=" and "Enum", but +1 – Marc Gravell Nov 24 '08 at 22:24
(as won't work for an enum) – Marc Gravell Nov 24 '08 at 22:25
thx. I never use the as syntax but I was trying to make it prettier for the post. – tvanfosson Nov 24 '08 at 22:26
Enum.Parse() - guess I never stumbled upon this before. Nice. – brun Nov 24 '08 at 22:41
feedback

Instead of switch you can always use a Dictionary<string, ...> and fill it once when the application starts

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.