コード例 #1
0
ファイル: DataSet.cs プロジェクト: huangdonghai/titan3d
        partial void LoadDataSetFromExcel(Type objType, RName name, ref bool result)
        {
            var imp = new ExcelImporter();

            if (false == imp.Init(name.Address))
            {
                result = false;
                return;
            }
            mDataRows = imp.Table2Objects2(objType);
            result    = true;
        }