c# – 是否可以创建扩展方法来格式化字符串?

c# – 是否可以创建扩展方法来格式化字符串?,第1张

概述这个问题真的很简单.我们如何在C#中格式化字符串?这条路: string.Format("string goes here with placeholders like {0} {1}", firstName, lastName); 现在,可以创建一个扩展方法来做到这一点吗? "string goes here {0} {1}".Format(firstName, lastName); 就这样. 这个问题真的很简单.我们如何在C#中格式化字符串?这条路:
string.Format("string goes here with placeholders like {0} {1}",firstname,lastname);

现在,可以创建一个扩展方法来做到这一点吗?

"string goes here {0} {1}".Format(firstname,lastname);

就这样.

解决方法 那比它看起来更复杂.其他人说这是可能的,我不怀疑他们,但在Mono似乎并非如此.

在那里,Format()方法的标准重载似乎在名称解析过程中优先,编译失败,因为静态方法最终被调用在对象实例上,这是非法的.

给出这个代码:

public static class Extensions{    public static string Format(this string str,params object[] args)    {        return String.Format(str,args);    }}class Program{    public static voID Main()    {        Console.Writeline("string goes here {0} {1}".Format("foo","bar"));    }}

Mono编译器(mcs 2.10.2.0)回复:

foo.cs(15,54): error CS0176: Static
member `string.Format(string,object)’
cannot be accessed with an instance
reference,qualify it with a type name
instead

当然,如果扩展方法没有命名为Format(),上面的编译是干净的,但也许你实际上想要使用该名称.如果是这样,那么这是不可能的,或至少不是.NET平台的所有实现.

总结

以上是内存溢出为你收集整理的c# – 是否可以创建扩展方法来格式化字符串?全部内容,希望文章能够帮你解决c# – 是否可以创建扩展方法来格式化字符串?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1241580.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存