Click here to Skip to main content
15,880,543 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi all,

I want to develop user interface GUI for the Roslyn compiler as a service.
I have used the C# to invoke that service.
Now, I want to build that GUI to use it as application in my project.

Anyone guide me with resources or ideas.

Thanx in Advanced.

additional information copied from comment below
I have this code in C# using application console

C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using Roslyn.Scripting;
using Roslyn.Scripting.CSharp;

namespace RoslynTest
{
    class Program
    {
        static void Main(string[] args)
        {
            var engine = new ScriptEngine();
            var session = engine.CreateSession();

            string text = System.IO.File.ReadAllText(@"C:\test.txt");
            session.Execute(text);
        }
    }
}


then I want to develop web application to it to get its URL

I try with the WPF in C# with simple windows
However, I am a beginner in C#.
Posted
Updated 18-Feb-14 0:29am
v3
Comments
BillWoodruff 18-Feb-14 10:43am    
Please do not make repeated entries of your code. Your responses to comments should be entered as comments, not "solutions."

You need to clearly explain your goals for your user interface: what do you want the user to see on the screen, and what do you want them to be able to do ?

1 solution

It's a GUI. I'm not sure what you are expecting from anyone - the GUI should be based upon what you are intending to do with the service, and how you expect people to work with it. As we have no idea what you are trying to do with Roslyn, we can offer you no better advice than that.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900