时间:2019-03-17 标签:c#

发布于 2024-09-16 02:04:56 字数 692 浏览 10 评论 0原文

我正在尝试测试我的扩展方法,该方法将字符串列表转换为逗号分隔的字符串:

public static class Extensions
{
      public static string ToCommaString<T>(this IList<T> input)
      {
        StringBuilder sb = new StringBuilder();
        foreach (T value in input)
        {
            sb.Append(value);
            sb.Append(",");
        }
        return sb.ToString();
      }
      public void TestExtension()
      {
        IList test=new List<string>();
        //test.ToCommaString doesnt appear
      }
}

问题是在方法 TestExtension 中我无法使用 ToCommaString 方法。

你知道发生了什么事吗?

我可以为我的所有 Web 应用程序提供在 web.config 或类似内容中注册的扩展方法吗?

提前致谢。

此致。

何塞

Im trying to test my extension method that converts a list of strings in a string comma separated:

public static class Extensions
{
      public static string ToCommaString<T>(this IList<T> input)
      {
        StringBuilder sb = new StringBuilder();
        foreach (T value in input)
        {
            sb.Append(value);
            sb.Append(",");
        }
        return sb.ToString();
      }
      public void TestExtension()
      {
        IList test=new List<string>();
        //test.ToCommaString doesnt appear
      }
}

The issue is that in the method TestExtension i cant use ToCommaString method.

Do you know what's happening?

Could i make available for all my web application this extension method registering in web.config or something similar?

Thanks in advance.

Best regards.

Jose

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

安穩 2024-09-23 02:04:56

您声明您的列表类型错误(非通用):

IList test=new List<string>(); 

它应该是

IList<String> test=new List<string>(); 

You're declaring your list to be the wrong type (non-generic):

IList test=new List<string>(); 

It should be

IList<String> test=new List<string>(); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文