Xamarin.Forms: Native iOS, Android & Windows apps with C# & XAML

The Interactive Window is an interactive environment that helps you quickly learn APIs, play with language features, and experiment with other .NET technologies by providing you with immediate feedback.
It would be cool if REPL editor would be able to extract script from interactive session and save it to file/clipboard.
Right now, we would have to step through script and copy/paste code snippets.
It would be cool if REPL editor would be able to extract script from interactive session and save it to file/clipboard.
Right now, we would have to step through script and copy/paste code snippets.
It would be cool if REPL editor would be able to extract script from interactive session and save it to file/clipboard.
Right now, we would have to step through script and copy/paste code snippets.
clickable resources link:
https://github.com/dotnet/roslyn/wiki/Interactive-Window
not clickable, but at least easy to copy
How is this different from this project which has been around a very long time?
https://github.com/lukebuehler/CShell
error CS1703: Multiple assemblies with equivalent identity have been imported: 'C:\WINDOWS\assembly\GAC_MSIL\System.Configuration\2.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll' and 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll'. Remove one of the duplicate references.
Any ideas ?
Ok, Thanks
Really cool sample !!!
Nice, but I think you should embed LinqPad in Visual Studio/VSCode.
why not use F# repl?
@Jason, what bits are you using? Let me know if you repro this on Update 1
Does it support lambda expression evaluation?
Kasey - really nice intro! Well presented.
I've been waiting for a decent REPL experience in .NET... so tired of creating ConsoleApplication634 to try something out.
Thanks!
I had a lot of excitement for the C# repl window, then I tried it and quickly lost interest. Partly because I currently use a tool like LinqPad and really like it, and also because I was expecting the C# Repl window to automatically load (or at least give a command to load) the current solution into scope with all the Classes and related Libraries ready to go.
It would have made exploring a code base a delight. Not to mention the fact that you could use the repl while you are actively developing to experiment your ideas and then copy and paste the ones that work back into your solution. This is my current workflow with Linqpad for Linq Queries. I thought the C# REPL would be the ultimate tool for this workflow
What does Interactive C# use to display results? It's much better than the default "ToString" implementation and I would imagine it is easy to create a debug viewer that uses it.
Nov 20, 2015 at 7:51PM, jspatton wrote
How is this different from this project which has been around a very long time?
https://github.com/lukebuehler/CShell
They have very similar capabilities, but CShell is a stand-alone application, while C# Interactive works inside visual studio.
Very cool. Is there a way to save or export all the history as a script I could run again later?
Thanks,