English 中文(简体)
Roslyn是否载有汇编者源代码?
原标题:Does Roslyn contain compiler source code?
  • 时间:2011-10-24 02:52:34
  •  标签:
  • roslyn

看来,Roslyn提供了新的信息预报系统,使许多汇编者内部数据结构能够进行编码分析等。 为此,对C#和VB汇编者进行了重写。 因此,除了新版本外,我还可以接触汇编者的来源?

最佳回答

http://www.ohchr.org。 我在Roslyn小组为微软工作。

汇编者来源代码未列入Roslyn C笔。 取而代之的是我们正在考虑的问题,但目前尚无任何明确计划。

问题回答

Roslyn has gone fully open source since April 3, 2014. The compiler source code is now available. http://roslyn.codeplex.com/

C#和VB汇编器正在分别改写在C#和VB。

However, the source for the compilers has not yet been released.
Hopefully, the source will be released in the framework source drop for an upcoming version of .Net.

你们可以看到ILSpy的编辑。





相关问题
Getting debugger context in C# interactive

C# Interactive seems a lot more powerful than the Immediate Window (at least it handles lambda expressions that are often used in LINQ - see Visual Studio debugging "quick watch" tool and ...

References in Roslyn .rsp files

I see in the CSharpInteractive.rsp you can add a reference to a DLL in the GAC using /r: How do you add references to your own DLLs? I tried System.Reflection.Assembly.LoadFrom, it didn t fail but ...

Roslyn是否载有汇编者源代码?

看来,Roslyn提供了新的信息预报系统,使许多汇编者内部数据结构能够进行编码分析等。 为此,对C#和VB汇编者进行了重写。 因此,我可以接触......。

Visual Studio: c# interactive shell window

Is there a way to use the C# interactive shell window (from the Roslyn CTP) outside of VS? Or is there something similar to it that is available?

Can I use Roslyn for compile time code rewriting?

For example I have class Foo: INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; public int Bar {get;set;} } Can I get the Foo class AST and rewrite Bar, in ...

Compiler as a service: How to build Refactoring tools?

Lisa Feigenbaum from Microsoft talks here about "Compiler as a service". I have read this would make it easier to build refactoring tools. How? Mono s CAAS is great but if Microsoft version is similar ...

Compiling code from a ASP.NET website

I need to have a textbox on a ASP.NET page in which a user would paste code and select one of the preset languages (C#, VB.NET, Python, Ruby etc) and I need to verify if the code compiles successfully....

what is the state of the "C# compiler as a service " [closed]

Back at the PDC in 2008, in the C# futures talk by Anders Hejlsberg he talked about rewriting the C# compiler and providing a "compiler as a service" I certainly got the impression at the time that ...

热门标签