コード例 #1
0
ファイル: Sheet.cs プロジェクト: emtees/old-code
		public Cell CreateCell (int col, int row)
		{
			var cell = new Cell (this, col, row);

			Attach (cell);
			
			return cell;
		}
コード例 #2
0
ファイル: Sheet.cs プロジェクト: emtees/old-code
		public void Attach (Cell cell)
		{
			long k = MakeKey (cell);

			cells [k] = cell;
		}
コード例 #3
0
ファイル: Sheet.cs プロジェクト: emtees/old-code
		static long MakeKey (Cell cell)
		{
			return (cell.Col << 32) | cell.Row;
		}