-2

Is there any BASIC wrapper / interface for C#? Lua interface wraps lua for C# which works perfect with ability to write user functions, Is there any wrapper that wraps BASIC in C#? I know that BASIC is old, But I just liked the way it's being used and I'm looking for some ways to wrap it as an additional language for my software.

111WARLOCK111
  • 153
  • 1
  • 1
  • 9
  • With "wrap" you mean to made it available for scripting purposes? Take a look to VBA or CS-Script (C# itself made...a scripting language). – Adriano Repetti Jun 03 '14 at 20:59

1 Answers1

2

Microsoft VisualBasic.NET is the companion language to C#. They are both built on top of the Common Intermediate Language (CIL) / Microsoft Intermediate Language (MSIL).

Peter Gluck
  • 8,168
  • 1
  • 38
  • 37