C# 传递数组参数_一维数组_二维数组
生活随笔
收集整理的這篇文章主要介紹了
C# 传递数组参数_一维数组_二维数组
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace _1206_傳遞數組參數_一維數組_二維數組_
{class Program{//在C#中,可以將數組作為參數傳遞給方法,同時方法可以更改數組元素的值。//將一維數組作為參數傳遞給方法static void MArray(int[] array){for (int i = 0; i < array.Length; i++){Console.WriteLine("array[{0}] = {1}", i, array[i] + 10);}}static void Main(string[] args){//將一維數組作為參數傳遞int[] arr = new int[] { 1, 2, 3, 4, 5 };MArray(arr);//傳遞數組參數Console.WriteLine("--------");MArray(new int[] { 2, 4, 6, 8 });//初始化數組并作為參數傳遞Console.ReadLine();}//將二維數組作為參數傳遞給方法static void MArray(int[,] array){for (int i = 0; i < 4; i++){for (int j = 0; j < 2; j++){Console.WriteLine("array[{0},{1}] = {2}", i, j, array[i, j] + 10);}}}static void Main2(string[] args){int[,] arr = new int[,] { { 1, 2 }, { 3, 4, }, { 5, 6 }, { 7, 8 } };MArray(arr); // 傳遞二維數組參數Console.WriteLine("---------------");// 初始化二維數組并作為參數傳遞MArray(new int[,] { { 10, 20 }, { 30, 40, }, { 50, 60 }, { 70, 80 } });Console.ReadLine();}}
}
?
總結
以上是生活随笔為你收集整理的C# 传递数组参数_一维数组_二维数组的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 秘鲁蓝莓国际农民丰收节贸易会-·万祥军:
- 下一篇: java新手,写了个简单的计算器,求高手