[C#] params : ๊ฐ๋ณ ๊ธธ์ด ๋งค๊ฐ ๋ณ์
2021. 11. 3. 09:13
๋ฉ์๋์ ๋งค๊ฐ ๋ณ์์ ๊ฐ์๊ฐ ์ ํด์ ธ์์ง ์์ ๋
params๋ฅผ ํค์๋๋ฅผ ํตํด ๋ฐฐ์ด์ ์ด์ฉํ์ฌ ์ ์ธํ๋ค.
public static int Plus(params int[] numbers)
{
...
}
static void Main(string[] args)
{
int result1 = Plus(1, 2, 3, 4, 5);
int result2 = Plus(1, 2, 3);
}
728x90
'๐ฃ์ธ์ด > C#' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[C#] ์ ๊ทผ ํ์ ์ : public, protected, private, internal, protected internal (0) | 2021.11.03 |
---|---|
[C#] this, this(), base, base() (0) | 2021.11.03 |
[C#] ref : ์ฐธ์กฐ์ ์ํ ๋งค๊ฐ๋ณ์ ์ ๋ฌ (0) | 2021.11.03 |
[C#] ๋นํธ ์ฐ์ฐ์ : <<, >>, &, |, ^,~ (0) | 2021.11.02 |
[C#] var : ์๋ ํ์ ์ง์ (0) | 2021.11.02 |