v1.2.0
- Added a new ExternalRuleDirectories object to simplify manipulation of the iLogic Addin's External Rule Directories.
C#:
ExternalRuleDirectories foo = new ExternalRuleDirectories();
foo.Add(@"C:\New Directory\");
foo.Remove(@"C:\Another Directory\")
int i = foo.Count;
List<string> myCopy = foo.Directories;
foo.Clear();
Please refer to the API documentation here for more info.
Find the nuget page here.