Mam mały, ale głupi problem. Zacząłem pracować z MS Roslyn, a ja staram się robić przewodniku, ale bezpośrednio na początku wystąpił błąd ...Analiza składni z MS Roslyn
error CS0117: „Roslyn.Compilers.CSharp.SyntaxTree” nie zawierają Definicja "ParseCompilationUnit"
Nie rozumiem, dlaczego tak się stało ... może jeden z was miał ten sam problem.
My Sourceode:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Roslyn.Compilers;
using Roslyn.Compilers.CSharp;
using Roslyn.Services;
using Roslyn.Services.CSharp;
namespace gettingstarted2
{
class Program
{
static void Main(string[] args)
{
SyntaxTree tree = SyntaxTree.ParseCompilationUnit(
@"using System;
using System.Collections;
using System.Linq;
using System.Text;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(""Hello, World!"");
}
}
}");
var root = (CompilationUnitSyntax)tree.GetRoot();
}
}
}
Uważam, że jest to problem z przewodnikiem. Zamiast tego użyj "ParseText". –