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.
有没有一种方法可以将 javascript 键码转换为 C# 使用的键码?
例如 87 是 javascript 中的字符“w”,但在 C# 中是 57。77 是“m”,而在 C# 中是 4D。有没有简单的方法来转换它们?谢谢。
问题不在于它们不同;你的 C# 只是十六进制的。
87 10 = 57 16 77 10 = 4D 16
只需将它们视为ints,而不是字符串,就可以了。
int