05-09-2022
06:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
05-09-2022
06:32 AM
The 'ExternalRuleDirectories' is stored as a 1-dimensional array.
You could probably create a quick function that would look for the comma (,) and then parse it into an array that's returned. The quick snip below puts it into a regular string that you can just manipulate or you can try and deal with the array as it is.
Dim output As String = String.Join(", ", iLogicAuto.FileOptions.ExternalRuleDirectories) Logger.Info(output)