예제 #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);
 }