如何在C#中定义自定义方法?

要在C#中定义自定义方法,请使用以下语法-

<Access Specifier> <Return Type> <Method Name>(Parameter List) {

Method Body

}

以下是方法的各个要素-

  • 访问说明符-确定另一个类中的变量或方法的可见性。

  • 返回类型-方法可以返回一个值。返回类型是方法返回的值的数据类型。如果该方法未返回任何值,则返回类型为void。

  • 方法名称-方法名称是唯一标识符,区分大小写。它不能与该类中声明的任何其他标识符相同。

  • 参数列表-括在括号之间的参数用于传递和接收方法中的数据。参数列表是指方法的参数的类型,顺序和数量。参数是可选的;也就是说,一个方法可以不包含任何参数。

  • 方法主体-这包含完成所需活动所需的一组指令。

让我们看一个例子-

示例

using System;

namespace Demo {

   class NumberManipulator {

      public int FindMax(int num1, int num2) {

         /* local variable declaration */

         int result;

         if (num1 > num2)

         result = num1;

         else

         result = num2;

         return result;

      }

      static void Main(string[] args) {

         /* local variable definition */

         int a = 90;

         int b = 15;

         int ret;

         NumberManipulator n = new NumberManipulator();

         //调用FindMax方法

         ret = n.FindMax(a, b);

         Console.WriteLine("Max value is : {0}", ret );

         Console.ReadLine();

      }

   }

}

输出结果

Max value is : 90

以上是 如何在C#中定义自定义方法? 的全部内容, 来源链接: utcz.com/z/352551.html

回到顶部