Skip to content

.NET based scripting library which will parse & evaluate code of format string to runtime value

License

Notifications You must be signed in to change notification settings

Vinayaka-Hebbar/FluidScript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FluidScript

Script parsing library for .Net

Installation

The Toolkit is available via NuGet, and should be installed into all of your projects (shared and individual platforms):

  • NuGet Official Releases: NuGet

Browse with the NuGet manager in your IDE to install them or run this command:

Install-Package FluidScript

Getting Started

After installation, start using the features you're after.

var compiler = new RuntimeCompiler();
compiler["x"] = 10;
compiler["y"] = 20;
var statement = Parser.GetStatement("x+y");
var res = compiler.Invoke(statement);
Console.WriteLine("res = " + res);

About

.NET based scripting library which will parse & evaluate code of format string to runtime value

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages