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

前端之家收集整理的这篇文章主要介绍了c# – 是否可以创建扩展方法来格式化字符串?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个问题真的很简单.我们如何在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平台的所有实现.

原文链接:https://www.f2er.com/csharp/96188.html

猜你在找的C#相关文章