在 C# 中实现标记系统的最佳方法是什么(无数据库;无 asp.net)?

发布于 2024-12-28 07:06:14 字数 80 浏览 0 评论 0原文

我找到了几个关于使用数据库后端实现标记系统的示例,但没有找到任何仅使用列表和字典来实现它的示例。谁能给我指导如何实现这一点或向我指出一些在线文章?

I found a couple of examples on implementing tagging systems with a database backend but not any on implementing it using just list and dictionaries. Can anyone give me a guide on how to implement this or point me to some online articles?

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

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

发布评论

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

评论(2

扶醉桌前 2025-01-04 07:06:14

我认为你要么需要一个数据库后端,要么你必须想出一种自己存储它的方法。

它所标记的东西,它们是如何存储的?

I think you either need a database backend or you'll have to come up with a way to store it yourself.

The things that it's tagging, how are they stored?

哆兒滾 2025-01-04 07:06:14

如果我没记错的话,列表和字典都在内存对象中,您需要将标签存储在非易失性存储中。以便您可以重复使用它们。 (它可以是文件、数据库,甚至你可以使用 xml )。

if i am not wrong, List and Dictionary are in memory objects, you need to store tags in in non-volatile storage. so that you can reuse them. (either it may be File, Database, or even u can use xml ) .

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