[C# WinForm] 배열 랜덤 섞기 배열을 무작위로 랜덤 배정을 위해서는 아래와 같이 간단한 방법으로 해결 가능 합니다 int[] szOther = .... .... Random rand = new Random(); int[] szMix = szOther.OrderBy(x => rand.Next()).ToArray(); 제 글이 도움이 되셨다면 댓글 & 공감 부탁드려요 😀 Application/C# (WinForm) 2023.05.31