C# 中的方法和函数之间的差异
在 C# 中,方法和函数相同。
然而,方法用于 C#,并且是通过指定类运行的函数。方法是一组共同执行任务的语句。每个 C# 程序至少包含一个带名为 Main 方法的类。
下面是一个展示如何在 C# 中创建方法的简单示例。
示例
class NumberManipulator { public int FindMax(int num1, int num2) { /* local variable declaration */ int result; if (num1 > num2) { result = num1; }else { result = num2; } return result; } ... }
广告