return value from switch statement c# code example
Example 1: c# get enum value from string
//This example will parse a string to a Keys value
Keys key = (Keys)Enum.Parse(typeof(Keys), "Space");
//The key value will now be Keys.Space
Example 2: return statement javascript
function test(arg){
return arg;
}