在聲明一個方法時,如果你不確定作為參數(shù)傳遞的參數(shù)數(shù)量,那么可以使用C#的param數(shù)組。
以下是一個完整的示例,用于學(xué)習(xí)如何在C#中實現(xiàn)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(); } } }
登錄后復(fù)制
以上就是為什么我們在 C# 中使用 params 關(guān)鍵字?的詳細(xì)內(nèi)容,更多請關(guān)注www.xfxf.net其它相關(guān)文章!