コード例 #1
0
ファイル: RowNode.cs プロジェクト: yulihzn/MyProject
        public string GetValueByIndex(int index)
        {
            ExcelNode cell = GetListExcelNode()[index];

            return(cell.GetExcelNodeReadModule(_outputType).GetString());
        }
コード例 #2
0
ファイル: RowNode.cs プロジェクト: yulihzn/MyProject
        public string GetKeyByIndex(int index)
        {
            ExcelNode cell = _keyRowNode.GetListExcelNode()[index];

            return(cell.GetExcelNodeReadModule(_outputType).GetString());
        }