函数

using System;

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

var sum = GetSum(53);
//sum is 8

Console.WriteLine("sum = {0},", sum);