1
Answer

Action Delegate and LINQ

DanYeung

DanYeung

12y
1.9k
1

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.

Answers (1)