分类: WINDOWS
2011-11-28 11:34:26
使用时想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; } } } |
====