Help for this page

Select Code to Download


  1. or download this
    for (int i=0; i < SomeValue; i++)
    {
    ...
                break;
        }
    }
    
  2. or download this
    my %CaseToMethod = (
        FIRST_CASE => 'FirstMethod',
    ...
        my $method = $CaseToMethod($some_param->GetID);
        $SomeArray[$i]{value} = $some_param->$method;
    }