public void SelectTargetFile(string filePath)
        {
            m_targetFilePath = filePath;

            m_curCodeTextInfo        = new CodeTextInfo();
            m_curCodeTextInfo.m_file = new FileInfo(filePath);
            var srcCode = File.ReadAllText(filePath);

            m_curCodeTextInfo.m_srcCode       = srcCode;
            m_curCodeTextInfo.m_originTxtList = m_processor.GetTextList(srcCode);
        }
 public string GeneExcelContent(CodeTextInfo codeTextInfo, int startId, string comment)
 {
     //todo d.c
     return(null);
 }
 public string GeneTextDefineContent(CodeTextInfo codeTextInfo, int startId, string prefix,
                                     FileInfo textDefineClsFile)
 {
     //todo d.c
     return(null);
 }
 public string GeneNewSourceCode(CodeTextInfo codeTextInfo, int startId, string prefix)
 {
     //todo d.c
     return(null);
 }