コード例 #1
0
ファイル: TestCellRangeAddress.cs プロジェクト: zzy092/npoi
        public void TestCopy()
        {
            CellRangeAddress ref1 = new CellRangeAddress(1, 2, 3, 4);
            CellRangeAddress copy = ref1.Copy();

            Assert.AreEqual(ref1.ToString(), copy.ToString());
        }