Tagged Questions

In a future release of Visual Studio, C# and Visual Basic compilers and language services will be completely rewritten from scratch in managed code, with a clean and powerful managed API. This effort is code-named 'Roslyn', and the managed compiler + services API will be available to all consumers. ...

learn more… | top users | synonyms

23
votes
5answers
4k views

what is the state of the “C# compiler as a service ”

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 ...
15
votes
4answers
1k views

Microsoft Roslyn vs. CodeDom

From a press release yesterday on InfoWorld regarding the new Microsoft Roslyn: The most obvious advantage of this kind of "deconstructed" compiler is that it allows the entire compile-execute ...
14
votes
5answers
1k views

What would you do with Compiler as a Service

Seeing that we'll probably get this feature in the next release what are some of the things you either think you'll be able to do or things you would like to use this feature to do? Personally, ...
9
votes
4answers
616 views

What are the benefits of Compiler as a Service

In Anders Hejlsberg's .NET 4.0 presentation he discussed in NET 5.0 ("or some future release") they are working on a "Compiler as a Service" model. Anders Hejlsberg's states: [source][1] "We want to ...
8
votes
4answers
292 views

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 ...
5
votes
3answers
206 views

How do I declare a var variable with Roslyn?

I've got the following piece of code, but I can't find how to get the var TypeSyntax. Any ideas? Syntax.LocalDeclarationStatement( declaration: Syntax.VariableDeclaration( ...
5
votes
1answer
82 views

Get TypeSyntax from ITypeSymbol

I'm experimenting a bit with the Roslyn-CTP. Currently I'm trying to replace var with the concrete type. var i=1; should become: int i=1; Figuring out the inferred type is easy. But since this ...
5
votes
2answers
393 views

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 ...
4
votes
3answers
292 views

Code diff using Roslyn CTP API

I'm trying to do some basic code diff with the Roslyn API, and I'm running into some unexpected problems. Essentially, I have two pieces of code that are the same, except one line has been added. This ...
4
votes
3answers
369 views

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?
3
votes
1answer
78 views

Adding custom attributes to C# classes using Roslyn

Consider the following class in a file "MyClass.cs" using System; public class MyClass : Entity<long> { public long Id { get; set; } [Required] public ...
3
votes
3answers
144 views

What is the most interesting and promising approach to implement a compiler in C#?

I am just in the beginning of my graduation project that is supposed to last for 6 months. The goal of the project is to implement a .Net-compiler for one scripting language. I had the Compiler ...
3
votes
1answer
160 views

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 VS debugging "quick watch" tool and lambda ...
2
votes
1answer
54 views

Package .exe into .vsix and call from Visual Studio extension

I have a Visual Studio package that does some of its work by starting an external process (using System.Diagnostics.Process) and communicating with it over standard input/output. Currently, I have the ...
2
votes
1answer
77 views

Creating an EF CodeFirst DbContext using Roslyn

Just a little idea I'm playing with, not sure if it's viable or has much of a use. I'm trying to generate a very basic EF Code First database using the Roslyn CTP. Code: var scriptEngine = new ...
2
votes
3answers
222 views

available options for 'fake' linq comprehension syntax keywordsin C#?

While there are a few cases where I'll write something using the method chains (especially if it's just one or two methods, like foo.Where(..).ToArray()), in many cases I prefer the LINQ query ...
2
votes
1answer
66 views

Is there a way to change fonts and colors for the C# Interactive window in the Roslyn CTP?

It seems to have partially inherited fonts and colors from my current settings, which has made it pretty ugly right now. I looked in fonts and colors but there is no settings for C# Interactive.
2
votes
4answers
151 views

Looking for a C# => Linq Expression compiler

I'm looking for the ability to convert entire methods into Expression trees. Writing it out would suck. :) So (trivial example) given the following text: public static int Add(int a, int b) { ...
2
votes
2answers
196 views

How stable is the Roslyn CTP as a replacement for dummy console apps?

I frequently find myself making a dummy console app to test something simple out. (For example how does DateTime.Parse like a YYYY-MM-DD-HH-MM-SS formatted string?) I know that Roslyn has the C# ...
2
votes
1answer
159 views

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 ...
2
votes
2answers
149 views

Does Roslyn contain compiler source code?

It seems that Roslyn provides new APIs to expose many compiler internal data structure for code analysis, etc. And the C# and VB compiler has been rewritten for such purpose. So can I access the ...
2
votes
2answers
260 views

Use Roslyn to compile Controllers dynamically

With the Roslyn CTP out in the open, we can try to think of cool things we can do with it other than writing c# scripts. Since asp.net mvc allows you to write custom controller factories, could we ...
2
votes
3answers
98 views

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 ...
1
vote
2answers
64 views

Finding a method's declaring type

Given a MethodDeclarationSyntax object how can I find out the method's declaring type? My actual problem is that I need to figure it out whether the referenced method is implementing an interface ...
1
vote
2answers
141 views

Roslyn doubts on SyntaxTree construction

Disclaimer I'm pretty sure I'm missing something obvious, but even after reading official documentation I don't clearly understand how Roslyn create a syntax tree. Example Consider the following, ...
1
vote
1answer
253 views

Roslyn and a .NET less C#? [closed]

Roslyn is written in C# with some initial bootstrapping. Does it pave the way for a day when we don't need .NET for c#? Maybe a version of C# with a ".NET" runtime that is so small that we do not even ...
1
vote
1answer
92 views

Automatically Loading .csx in Roslyn

Is it possible to tell Visual Studio or Roslyn to execute a specific code script every time I reset the C# Interactive Window from my Project? For example - I have a form with a Plotter that displays ...
1
vote
1answer
40 views

How to get the EndLinePosition for a Class declaration?

I am trying to get the start and end line of classes. I am using the tree.GetLineSpan(span, false).EndLinePosition.Line but do not get a result. I do get a result for tree.GetLineSpan(span, ...
1
vote
1answer
204 views

Loading a Roslyn compiled assembly into a sandbox AppDomain

I've got a code-snippet that compiles a script with the script engine and I retreiv the assembly as a byte array. Now I want to load this Assembly in a Sandbox, this is what I've got: Assembly ...
1
vote
1answer
117 views

VisitClassDeclaration node.Identifier in Roslyn

How can I find what line number in the source file the declaration was found on?
1
vote
2answers
145 views

How to check for compile errors before compiling with CodeDom

I'm using the CodeDom to allow custom scripts (C#) to be run in an application I'm creating. While writing the script I would like to be able to check for compile errors. The code gets added to and ...
0
votes
1answer
20 views

what code optimizations can roslyn provide

I've started playing with Roslyn's syntax & semantic APIs. Haven't really digged hard yet but, is there any code optimization provided by semantic API like: dead code elimination, hoisting or ...
0
votes
0answers
20 views

How to make Roslyn Syntax Visualizer Extension work?

When Roslyn installed, there comes a couple of great demo tools. First, the most valuable I think for those, who want to learn syntax trees more thoroughly. It's Syntax Visualizer Tool Window which ...
0
votes
3answers
124 views

What are the benefits of using Roslyn - compiler as a service

Would like to know what is CaaS as applied to what Roslyn uses and in general, and how using the Roslyn compiler improves the performance of a C# application over the current C# 4.0 compiler. Also, ...
0
votes
1answer
66 views

Is there a way to setup a working directory for “r and ”load commands

Quesiton is relative to References in Roslyn .rsp files Did install the Roslyn, playing with: C:\Users\name\Documents\Microsoft Codename Roslyn CTP - October 2011\CSharp\WpfSeedRepl Walkthrough: ...