Home > Backend Development > C#.Net Tutorial > return keyword in C#

return keyword in C#

WBOY
Release: 2023-08-27 08:53:06
forward
1387 people have browsed it

C# 中的 return 关键字

The return statement is used to return a value. When a program calls a function, program control is transferred to the called function.

Let’s use an example to understand the usage of return statement in C#. Here we find the average and return the result using the return statement.

double getAverage(int[] arr, int size) {
   int i;
   double avg;
   int sum = 0;

   for (i = 0; i < size; ++i) {
      sum += arr[i];
   }

   avg = (double)sum / size;
   return avg;
}
Copy after login

This is the complete example -

Example

using System;
namespace ArrayApplication {
   class MyArray {
      double getAverage(int[] arr, int size) {
         int i;
         double avg;
         int sum = 0;

         for (i = 0; i < size; ++i) {
            sum += arr[i];
         }

         avg = (double)sum / size;
         return avg;
      }

      static void Main(string[] args) {
         MyArray app = new MyArray();

         /* an int array with 5 elements */
         int [] balance = new int[]{1000, 2, 3, 17, 50};
         double avg;

         /* pass pointer to the array as an argument */
         avg = app.getAverage(balance, 5 ) ;

         /* output the returned value */
         Console.WriteLine( "Average value is: {0} ", avg );
         Console.ReadKey();
      }
   }
}
Copy after login

The above is the detailed content of return keyword in C#. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template