It should be a recursive method to sum up values of a array.
public static int Summe(int[] v, int von, int bis){ if(von == bis){ return v[von]; }