在宣告一個方法時,如果你不確定作為參數傳遞的參數數量,那麼可以使用C#的param陣列。
以下是一個完整的範例,用於學習如何在C#中實作param:
using System; namespace Program { class ParamArray { public int AddElements(params int[] arr) { int sum = 0; foreach (int i in arr) { sum += i; } return sum; } } class Demo { static void Main(string[] args) { ParamArray app = new ParamArray(); int sum = app.AddElements(300, 250, 350, 600, 120); Console.WriteLine("The sum is: {0}", sum); Console.ReadKey(); } } }
以上是為什麼我們在 C# 中使用 params 關鍵字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!