Why the following code didn't step inot the TranferLocal method?
Action<string, IEnumerable<string[]>, Action<TextWriter, string[]>> transfer;
transfer = (f, d, a) => TransferLocal(FilePath, f, d, a);
I put a break point in the TransferLocal method and it didn't stop over there.
Thanks.