집 >백엔드 개발 >C#.Net 튜토리얼 >C#의 Enumerable.Repeat 메서드
Enumerable.Repeat 메서드는 System.Linq 네임스페이스의 일부입니다.
C#에서 중복 요소가 있는 컬렉션을 반환합니다.
먼저 반복할 요소와 반복 횟수를 설정하세요.
예를 들어 숫자 10을 5번 반복하는 방법을 살펴보겠습니다. −
Enumerable.Repeat(10, 5);
전체 예는 다음과 같습니다 −
Demonstration
using System; using System.Linq; class Demo { static void Main() { var val = Enumerable.Repeat(10, 5); foreach (int res in val) { Console.WriteLine(res); } } }
10 10 10 10 10
위 내용은 C#의 Enumerable.Repeat 메서드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!