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
  • 17,454
  • 22
  • 87
  • 114

1 Answers1

5

Powershell lets you do this.

See Accessing .NET components from Powershell

Community
  • 1
  • 1
Mitch Wheat
  • 295,962
  • 43
  • 465
  • 541
  • 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