- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace InterfaceTest
- {
- public interface IIndexTest
- {
- int this[int index]
- {
- set;
- get;
- }
- }
- class Indextest : IIndexTest
- {
- private int[] myint=new int[10];
- public int this[int index]
- {
- set
- {
- if (index >= 0 && index
关注打赏
立即登录/注册


微信扫码登录