gpt4 book ai didi

c# - List<> 内的 "Tag"字符串

转载 作者:行者123 更新时间:2023-11-30 13:31:51 26 4
gpt4 key购买 nike

我需要将三种类型的字符串按特定顺序放入单个列表中。 “三种类型”是指存在三种处理字符串的方法。我想到了使用像这样的 struct 来放入列表:

struct Chunk
{
public char Type; // 'A', 'B' or 'C'.
public string Text;
}

也许有更好的方法来标记一个字符串应该如何处理?

最佳答案

您可以使用 enum .这将为您提供智能感知和错误检查。

struct Chunk
{
public TheType Type; // 'A', 'B' or 'C'.
public string Text;
}

enum TheType { A, B, C }

关于c# - List<> 内的 "Tag"字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18068819/

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