本文介绍了使用索引器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我是初学者.任何人都可以通过一个很好的例子告诉我C#中索引器的正确定义和使用吗?

Hi,

I am a begginner. Can anyone please tell me the proper definition and use of indexers in C# with a good example?

推荐答案

private void button1_Click(object sender, RoutedEventArgs e)
    {
        Students obj = new Students();
        string FirstName = obj[0];//Getting Item using Indexers
        obj[2] = "Tim";//Modifying Item using Indexers
    }
    public class Students
    {
        List<string> students = new List<string>() { "Eric", "Bill", "Joseph" };
        public string this[int ind]
        {
            get { return students[ind]; }
            set { students[ind] = value; }
        }
    }



这篇关于使用索引器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 20:13