Notice
Recent Posts
Recent Comments
Link
투케이2K
84. (C#/NET) [Mac Os] [문법] 고정 array 배열 Distinct 사용해 중복 제거 후 데이터 출력 수행 본문
C샵 (NET)
84. (C#/NET) [Mac Os] [문법] 고정 array 배열 Distinct 사용해 중복 제거 후 데이터 출력 수행
투케이2K 2024. 3. 17. 17:16[개발 환경 설정]
개발 언어 : C# / NET
[소스 코드]
using System;
using System.Collections;
using System.Data;
using System.Diagnostics.Tracing;
using System.Text;
using System.Web;
namespace testProject {
// [프로그램 동작 클래스]
class Program {
// [메소드 수행]
static void Main(string[] args){
// [변수 선언 실시]
string[] strArray = { "A", "B", "B", "C", "A" };
// [Distinct 사용해 배열 중복 요소 제거]
string[] distinctArray = strArray.Distinct().ToArray();
// [결과 출력]
Console.WriteLine($"");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"[Main] : [Log]");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"list : {listValue(strArray)}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"distinctList : {listValue(distinctArray)}");
Console.WriteLine($"------------------------------------------");
Console.WriteLine($"");
}
// [배열 요소 출력 print]
public static string listValue(string[] myList) {
string returnData = "[";
if (myList != null){
for (int i = 0; i < myList.Length; i++) {
if (i != myList.Length-1){
returnData += myList[i] + ", ";
}
else {
returnData += myList[i];
}
}
}
returnData += "]";
return returnData;
}
}
}
[결과 출력]
반응형
'C샵 (NET)' 카테고리의 다른 글
Comments