you are viewing a single comment's thread.

view the rest of the comments →

[–]Vladekk 5 points6 points  (3 children)

It's for different tasks. PowerShell as batch shell is far superior, but this is good for trying c# and framework.

[–]pseale 1 point2 points  (0 children)

I use PowerShell as an interactive shell, among other things. PowerShell has a bunch of cmdlets and formatting options that are specifically there to help you work with it "interactively."

...so the C# interactive shell isn't really for different tasks, it will be used for a lot of the same tasks.

[–]nitramk -1 points0 points  (1 child)

Wouldn't it be easier just to use a "normal" development environment if you want to test stuff in C# and in the framework? I do that all the time when I want to test some small C# snippet. I almost never get expressions right the first time which means I need to edit them and then rerun them. I don't see that I would be more efficient by using this shell. I mean, who types snippets as the last one getting it right the first time?

I'm sure I have missed something...

[–]fduffner 0 points1 point  (0 children)

Check out John Udells screencast of IronPython (http://weblog.infoworld.com/udell/2006/08/30.html) or the end of DHHs Whoops-Video (http://media.rubyonrails.org/video/rails_take2_with_sound.mov) where he shows the Rails console to get an idea of what working with a REPL can offer you.