using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
public static void Main()
{
CalcManage nm = new CalcManage();
nm.running();
}
}
class CalcManage
{
public void running()
{
string[] arr = {""};
List<string> list = new List<string>(arr.ToList());
list.Add("10.1.191.117");
list.Add("10.1.191.118");
list.Add("10.1.191.119");
list.Add("10.1.191.116");
list.Add("10.1.191.115");
list.Add("10.1.191.114");
list.Add("10.1.191.113");
arr = list.ToArray();
foreach(var e in arr)
{
Console.WriteLine(e);
}
/*------------------------------------------*/
display_packet(list, arr);
}
void display_packet(List<string> list, string[] arr)
{
foreach(var e in arr)
{
Console.WriteLine(e);
}
}
}
결과
10.1.191.117
10.1.191.118
10.1.191.119
10.1.191.116
10.1.191.115
10.1.191.114
10.1.191.113
10.1.191.117
10.1.191.118
10.1.191.119
10.1.191.116
10.1.191.115
10.1.191.114
10.1.191.113
'c# 언어 > 초급과정' 카테고리의 다른 글
csc.exe 사용하기. 옵션포함 (0) | 2023.04.27 |
---|---|
ComponentOne 프로젝트에 컨트롤 추가하고, 빌드하기 (0) | 2023.03.21 |
프로퍼티(Property) - get, set 사용 example(handle) (0) | 2022.12.31 |
System.Windows.Forms.ListBox listBox1 = null; (0) | 2022.12.27 |
frm.ShowModal() (0) | 2022.12.08 |