当前位置: 首页>>代码示例>>C#>>正文


C# Handler.Flush方法代码示例

本文整理汇总了C#中Handler.Flush方法的典型用法代码示例。如果您正苦于以下问题:C# Handler.Flush方法的具体用法?C# Handler.Flush怎么用?C# Handler.Flush使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Handler的用法示例。


在下文中一共展示了Handler.Flush方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Window_Loaded

        private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            //            MessageBox.Show("Step 1. List all of the comments by themselves, with a check box for deleting");

            try
            {
                List<string> temp;
                const string fileName = @"D:\Classapps\src\ResultsOverview.aspx.cs";
            //                const string fileName = @"..\..\Window1.xaml.cs";
                var fileInfo = new FileInfo(fileName);
                var codeToParse = fileInfo.OpenText().ReadToEnd();

                var handler = new Handler();
                //TODO: I can make this part of the IStackStream/StackStreamer interface
                //where in I input a stream of character and get out a stream of tokens
                codeToParse.Do(handler.Process);
                handler.Flush();

                var tokens = StackStreamer.Stream(handler);
                tokens = TokenNester.Process(tokens);

                var codeListing = new CodeListing {Assembly = new Assembly()};
                new TreeProcessor(tokens, codeListing).ProcessObjectTree();

                var doc = new XDocument(codeListing.GetXml());
                doc.Save(@"..\..\output.xml");

                MessageBox.Show("Complete!");
            }
            catch (Exception exception)
            {
                MessageBox.Show(exception.Message + "\r\n\r\n" + exception.StackTrace);
            }

            Close();
        }
开发者ID:mcwatt77,项目名称:vimcontrols,代码行数:36,代码来源:Window1.xaml.cs


注:本文中的Handler.Flush方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。