然而,在C#中使用方法,它们是通过指定的类来操作的函数。方法是一组语句,共同执行一个任务。每个C#程序至少有一个带有名为Main的方法的类。
示例
class NumberManipulator { public int FindMax(int num1, int num2) { /* local variable declaration */ int result; if (num1 > num2) { result = num1; }else { result = num2; } return result; } ... }