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索引器概述及声明的主要内容,如果未能解决你的问题,请参考以下文章