摘要: 通过泛型+拓展函数实现。即,通过函数实现管道,使用拓展函数进行管道连接。 1 //管道函数 2 public static class Fs 3 { 4 //第一段管道 5 public static Func<string, int> F1 = (x) => int.Parse(x); 6 //第 阅读全文
posted @ 2025-02-24 11:39 畅游Internet 阅读(52) 评论(0) 推荐(0)