Truyền mảng trong một phương thức làm đối số phương thức.
Giả sử sau đây là phần khai báo và khởi tạo mảng của chúng tôi.
MyArray app = new MyArray();
/* an int array with 5 elements */
int [] balance = new int[]{1000, 2, 3, 17, 50}; Bây giờ, hãy gọi phương thức getAverage () và chuyển mảng làm đối số của phương thức.
double getAverage(int[] arr, int size) {
// code
} Sau đây là ví dụ cho thấy cách truyền một mảng trong một phương thức trong C #.
Ví dụ
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();
}
}
} Đầu ra
Average value is: 214.4