I know switch statements are not available in CodeDom and how compilers deal with switch statement. 
So for performance reasons when many cases are present, I don't want to use If-else 
Why the switch statement and not if-else?
Is is possible to generate code to simulate a Jump table for a given case list.
switch(value) {
    case 0: return Method0();
    case 1: return Method1();
    case 4; return Method4();
}
Would produce:
    private delegate object Method();
    Method[] _jumpTable = new Method[] { Method0, Method1, null, null, Method4 };
    private object GetValue(int value)
    {
        if (value < 0 || value > 4) 
            return null;
        return _jumpTable[value]();
    }
What is the best way to analyze the case list and generate an array if there are holes in the sequence or the list is sparse?
 
     
    