gpt4 book ai didi

c# - 限制通用扩展方法扩展字符串

转载 作者:IT王子 更新时间:2023-10-29 04:46:33 26 4
gpt4 key购买 nike

我有一个非常通用的扩展方法来在控制台中显示任何类型的列表:

public static void ShowList<T>(this IEnumerable<T> Values)
{
foreach (T item in Values)
{
Console.WriteLine(item);
}
}

不是当我有一个字符串时我可以使用这个方法

string text = "test";
text.ShowList();

但是对于 string 它在我的应用程序中没有意义。

如何从该方法中排除 string?我读过一些关于

ShowList<T>(this IEnumerable<T> Values): Where != string //doesn't work

最佳答案

老实说,开始时这感觉有点奇怪 - 如果某些东西应该适用于任何字符序列,那么它应该适用于字符串,一系列字符。

如果你真的想让它编译失败,你可以添加一个重载接受string标记为已过时:

[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete(IsError = true, Message = "A string is a sequence of characters, but is not intended to be shown as a list")]
public static void ShowList(this string text)
{
throw new NotSupportedException();
}

重载解析会选择那个方法,然后编译失败。 EditorBrowsable属性将希望从 Intellisense 中删除它 - 但你必须看看它是否真的有效。 (它可能仍然显示另一个过载,即使不会被选中。)

另一种选择是实现 ShowList<T>就好像该字符串是一个单项列表:

// Specialization to avoid listing each character separately.
public static void ShowList(this string text) => new[] { text }.ShowList();

换句话说,使调用有效,但更适本地处理它。

关于c# - 限制通用扩展方法扩展字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40929109/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com