Hi Guys,
I need to removes few lines from a text file using only assign and invoke methods.
- I used a Assign activity (in a variable of type list of strings): File.ReadAllLines(“Filepath”).ToList
- Use invoke method to delete first 31 lines from the text file.
I tried using remove method but it displays error that list does not have public instance name ‘remove’.
Please suggest if anything needs to be configured in properties (parameters and arguments)
Please suggest an approach to implement this.