Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
string "hello world".toLower().toUpper().replace("o", "x");
如何使我自己的类能够具有像上面示例中的字符串这样的扩展方法?也许没那么有用,但我就是不知道怎么做
这些被称为可用于流畅 API的链式方法。
通常通过从所有方法调用返回相同类型来创建它们。
请参阅使用 C# 3 编写流畅接口的技巧。