时间:2019-03-17 标签:c#
我正在尝试测试我的扩展方法,该方法将字符串列表转换为逗号分隔的字符串:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您声明您的列表类型错误(非通用):
它应该是
You're declaring your list to be the wrong type (non-generic):
It should be