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.
我有一个使用 devexpress 调度程序的旧应用程序,我正在为它开发新应用程序。我的问题是在数据库中它具有 int 类型的字段“LABELCOLOR”。它的值如 536870912、6610596、8689404 等。
现在我需要使用 c# 将这些值转换为十六进制颜色格式,但找不到任何参考我该怎么做。我相信这些值是德尔福颜色的整数表示。
请指导。提前致谢。
C#: Console.WriteLine(8689404.ToString("X6"));
Console.WriteLine(8689404.ToString("X6"));