Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过我的 .Net windows 应用程序将 alpha、beta、theta 和所有超级脚本符号保存在 SQL Server 数据库中。而且我需要再次获取并希望在标签控件上显示。我需要做什么?我正在使用 C#。
将它们存储在 sql server 的 nchar(n) 或 nvarchar(n) 字段中。不要忘记字符串的 N' ' 符号。要表示标签中的字符,您需要一个 unicode 字体。
我认为在标签上存储、检索和放置字符串值的其他一切都是相同的。