Exemplo n.º 1
0
        static void Main(string[] args)
        {
            #region Declaración de código
            var _code = @"using System;
            using System.Collections.Generic;
            using System.Linq;
            using System.Text;
            using Microsoft.CodeAnalysis;
            using Microsoft.CodeAnalysis.CSharp;

            namespace TopLevel
            {
            using Microsoft;
            using System.ComponentModel;

            namespace Child1
            {
            using Microsoft.Win32;
            using System.Runtime.InteropServices;

            class Foo { }
            }

            namespace Child2
            {
            using System.CodeDom;
            using Microsoft.CSharp;

            class Bar { }
            }
            }";
            #endregion

            SyntaxTree tree = CSharpSyntaxTree.ParseText(_code);

            var root = (CompilationUnitSyntax)tree.GetRoot();

            var collector = new UsingCollector();
            collector.Visit(root);

            foreach (var directive in collector.Usings)
            {
                Console.WriteLine(directive.Name);
            }
        }
Exemplo n.º 2
0
        /// <summary>The main.</summary>
        /// <param name="args">The args.</param>
        public static void Main(string[] args)
        {
            SyntaxTree tree = CSharpSyntaxTree.ParseText(
                @"using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
 
namespace TopLevel
{
    using Microsoft;
    using System.ComponentModel;
 
    namespace Child1
    {
        using Microsoft.Win32;
        using System.Runtime.InteropServices;
 
        class Foo { }
    }
 
    namespace Child2
    {
        using System.CodeDom;
        using Microsoft.CSharp;
 
        class Bar { }
    }
}");

            var root      = (CompilationUnitSyntax)tree.GetRoot();
            var collector = new UsingCollector();

            collector.Visit(root);

            foreach (var directive in collector.Usings)
            {
                Console.WriteLine(directive.Name);
            }

            Console.ReadLine();
        }