[c#] Split practice




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace ConsoleApplication8
{
    class Program
    {
        static void Main(string[] args)
        {
            string strNumber = "1,2,3,4,5,6,7,8,9,10";
 
            string[] eachNumber = strNumber.Split(',');
 
            foreach (string a in eachNumber)
            {
                Console.WriteLine("number:{0}", a);
            }
 
            System.Console.ReadLine();
        }
    }
}
 
cs

댓글

이 블로그의 인기 게시물

[c#] DataTable을 dataGridView에 바인딩

[React] index.html 수정하기

[React] 프로젝트 생성