DanYeung

DanYeung

  • NA
  • 12
  • 0

Action Delegate and LINQ

Feb 23 2012 10:40 AM

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)