2014년 5월 5일 월요일

[닷넷 C# 인덱서]C# 인덱서(indexer)에서 파라미터, 매개변수를 문자열 String으로, 인덱서예제, 인덱서교육 ​

[닷넷 C# 인덱서]C# 인덱서(indexer)에서 파라미터, 매개변수를 문자열 String으로, 인덱서예제, 인덱서교육

using System;
using System.Collections;
// Using a string as an indexer value
class DayCollection
{
    string[] days = { "일", "월", "화", "수", "목", "금", "토" };
    // This method finds the day or returns -1
    private int GetDay(string testDay)
    {
        for (int j = 0; j < days.Length; j++)
        {
            if (days[j] == testDay)           {           return j;           }
        }
        return 999;
    }
    // The get accessor returns an integer for a given string
    public int this[string day]
    {
        get    {         return (GetDay(day));        }
    }
}
class Program
{
    static void Main(string[] args)
    {
        DayCollection week = new DayCollection();
        System.Console.WriteLine(week["일"]);   //0
        // 999 리턴        
        System.Console.WriteLine(week["Made-up Day"]);
    }
}

댓글 없음:

댓글 쓰기