示例#1
0
文件: CellExt1.cs 项目: ikvm/test
        public virtual CellSet write()
        {
            clearDSRef();
            clearCellRef();
            CellSet cs = new CellSet(RowSize, ColSize);

            Class3.transfer(this, cs);
            return(cs);
        }
示例#2
0
文件: CellExt1.cs 项目: ikvm/test
 public virtual void read(CellSet cs)
 {
     Class3.transfer(cs, this);
 }