处理数学和计算的扩展方法有哪些有用的例子?
我经常使用的扩展方法是
public static double Pi(double this x) { return Math.PI*x; }
为了访问 2.0.Pi()
或 0.5.Pi()
.. 等等
数学相关扩展的其他示例是什么人们经常使用的方法?
附言。只是好奇。
My very often used extension method is
public static double Pi(double this x) { return Math.PI*x; }
in order to have access to 2.0.Pi()
or 0.5.Pi()
.. etc
What are some other examples of mathematics related extension methods the people use often?
PS. Just curious.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了让创意源源不断,我将提供更多例子......
PS。感谢@Aaron 发布extensionmethods.net。不幸的是,他们几乎没有与数学相关的帖子。
In order to get the creative juices flowing I will offer some more examples...
PS. Thanks @Aaron for posting extensionmethods.net. Unfortunately they have little in terms of math related postings.