分类:
2012-03-01 17:09:57
原文地址:数组成员的get,set怎么做? 作者:Alan0521
使用时想Value[i]如何写get和set方法? ==================================== 使用索引器, using System; class IndexerClass { private int [] myArray = new int[100]; public int this [int index] { get { if (index < 0 || index > = 100) return 0; else return myArray[index]; } set { if (!(index < 0 || index > = 100)) myArray[index] = value; } } } |
============================================================================================
puclic class A { private int _b[][] ; public int B[][] { set{ _b = value; } get { return _b; } } } |
====