We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to specify if predefined types should be loaded. Default should be true.
The text was updated successfully, but these errors were encountered:
Now it should be possible to specify some options when creating the Interpreter:
var target = new Interpreter(InterpreterOptions.Default); [Flags] public enum InterpreterOptions { None = 0, /// <summary> /// Load primitive types like 'string', 'double', 'int', 'DateTime', 'Guid', ... /// </summary> PrimitiveTypes = 1, /// <summary> /// Load system keywords like 'true', 'false', 'null' /// </summary> SystemKeywords = 2, /// <summary> /// Load common types like 'System.Math', 'System.Convert' /// </summary> CommonTypes = 4, /// <summary> /// Load all default configurations: PrimitiveTypes + SystemKeywords + CommonTypes /// </summary> Default = PrimitiveTypes | SystemKeywords | CommonTypes }
Default constructor has the same behavior as before.
Sorry, something went wrong.
Allow to specify a default interpreter's configuration (#12)
1ad4426
Allow to specify a default interpreter's configuration (dynamicexpres…
bbc7bc0
…so#12)
No branches or pull requests
Allow to specify if predefined types should be loaded. Default should be true.
The text was updated successfully, but these errors were encountered: