Computer >> Máy Tính >  >> Lập trình >> C#

Cách gọi một phương thức của một lớp trong C #


Để gọi một phương thức, hãy sử dụng tên của phương thức sau tên đối tượng, ví dụ:-

obj1. Display();

Giả sử tên lớp là ApplicationOne, vì vậy để gọi phương thức -

ApplicationOne one = new ApplicationOne();

//calling the displayMax method
ret = one.displayMax(a, b);

Sau đây là ví dụ cho thấy cách gọi một phương thức trong C # -

Ví dụ

using System;

namespace Demp {
   class ApplicationOne {
      public int displayMax(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 = 700;
         int b = 400;
         int ret;
         ApplicationOne one = new ApplicationOne();

         ret = one.displayMax(a, b);
         Console.WriteLine("Max value is : {0}", ret );
         Console.ReadLine();
      }
   }
}

Đầu ra

Max value is : 700