| 1234567891011121314151617181920 |
- //
- // System.CodeDom.Compiler ICodeParser Interface
- //
- // Author:
- // Miguel de Icaza ([email protected])
- // Daniel Stodden ([email protected])
- //
- // (C) 2001 Ximian, Inc.
- //
- namespace System.CodeDom.Compiler
- {
- using System.CodeDom;
- using System.IO;
- public interface ICodeParser
- {
- CodeCompileUnit Parse( TextReader codeStream );
- }
- }
|