3

Is there anything like Beanshell, which exposes CLR classes instead of Java classes, and lets you write scripts in C# or VB.Net (or any .Net language for that matter)

Should come in handy to test one-liner code snippets

Midhat
  • 16,940
  • 19
  • 85
  • 114

1 Answers1

5

Powershell lets you do this.

See Accessing .NET components from Powershell

Community
  • 1
  • 1
Mitch Wheat
  • 288,400
  • 42
  • 452
  • 532
  • Powershell is indeed good option, though I wish it offered a syntax options of being C#-like and VB-like rather than it's current syntax. Beanshell at least has or can use Java-like syntax. – David Feb 13 '12 at 23:03