我不知道为什么我会收到这个错误。我的项目中只有一个类和一种方法,如下所示:
public static class Extensions
{
public static string Chop(this string s, int length)
{
...
return "";
}
}
我在我的视图中这样称呼它: @item.PostContent.Chop(20)
它给了我一个编译器错误:
The call is ambiguous between the following methods or properties: 'Extensions.Chop(string, int)' and 'Extensions.Chop(string, int)'
任何帮助表示赞赏。谢谢你。