Methods with return value in C#

int GetSum(int n1, int n2) {
    return n1 + n2;
}

var sum = GetSum(5, 3);
//sum is 8