18._4索引器概述及声明

Posted 前缘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了18._4索引器概述及声明相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _18._4索引器概述及声明
{

    public class Clerk
    {
        private string name;

        public string Name
        {
            get { return name; }
            set { name = value; }
        }

        private char gender;
        public char Gender
        {
            get
            {
                if (gender !=  && gender != ) gender = ;
                return gender;
            }
            set
            {
                gender = value;
            }
        }

        private int[] myint = new int[10];
    //    public int this[int index]
    //    {
    //        get { return myint[index]; }
    //        set { myint[index] = value; }
    //}
     //public virtual int this[int index]
     //   {
     //       get { return myint[index]; }
     //   }

            public extern int this[int index]
        {
            get; set;
        }

        abstract class indexExample
        {
            abstract int this[int index]
            {
                get; set;
            }
        }
    class Program
    {
        static void Main(string[] args)
        {
        }
    }
}

 

以上是关于18._4索引器概述及声明的主要内容,如果未能解决你的问题,请参考以下文章

中篇_2_class文件结构

Reactreact概述组件事件

14_15_概述及垃圾回收相关算法

JAVA集合02_List集合的概述并发修改异常迭代器遍历子类对比

STL---heap概述及用法

在片段着色器中,为啥我不能使用平面输入整数来索引 sampler2D 的统一数组?