[파일명: TestSortApp.cs]------------------------------------------------
using System;
using System.Collections;
using System.Collections.Generic;
namespace MyTestApplication1 {
class TestSortApp {
public static void Main(String[] args) {
String[] arr = new String[args.Length];
for (int i = 0; i < args.Length; i++) {
arr[i] = args[i];
}
Array.Sort(arr);
PrintArray(arr);
}
public static void PrintArray(Object[] arr) {
Console.Write("[");
for (int i = 0; i < arr.Length - 1; i++) {
Console.Write("{0}, ", arr[i]);
}
if (arr.Length > 0)
Console.Write("{0}", arr[arr.Length - 1]);
Console.WriteLine("]");
}
}
}
------------------------------------------------
컴파일> csc TestSortApp.cs
실행> TestSortApp one two three four five
[five, four, one, three, two]
실행> TestSortApp 하나 둘 셋 넷 다섯
[넷, 다섯, 둘, 셋, 하나]
'프로그래밍 > C#' 카테고리의 다른 글
스트링 리스트에서 스트링 찾기(find) with C# (0) | 2009.04.27 |
---|---|
스트링 배열에서 스트링 찾기(find) with C# (0) | 2009.04.27 |
손으로 계산하는 긴자리 곱셈표 만들기 with C# (0) | 2009.03.07 |
문자열 거꾸로 하기 with C# (0) | 2009.01.25 |
손으로 만드는 나눗셈 계산표 with C# (0) | 2009.01.24 |