집 >백엔드 개발 >C#.Net 튜토리얼 >C#에서 params 키워드를 사용하는 이유는 무엇입니까?
메서드를 선언할 때 매개변수로 전달할 매개변수의 개수가 확실하지 않은 경우 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!