在 C# 中将单引号字符串到 uint
本文关键字:字符串 uint 单引号 | 更新日期: 2023-09-27 18:36:25
我正在将一些C++转换为 C# 代码,我看到了以下定义:
#define x 'liaM'
首先,这个单引号常量是什么意思?我是否在 c# 中将其设置为字符串常量?
其次,此常量在 C++ 中作为值分配给 uint 变量。这是怎么回事?
uint m = x;
这有时被称为 FOURCC。有一个Windows API可以从字符串转换为名为mmioStringToFOURCC的FOURCC,这里有一些C#代码可以做同样的事情:
public static int ChunkIdentifierToInt32(string s)
{
if (s.Length != 4) throw new ArgumentException("Must be a four character string");
var bytes = Encoding.UTF8.GetBytes(s);
if (bytes.Length != 4) throw new ArgumentException("Must encode to exactly four bytes");
return BitConverter.ToInt32(bytes, 0);
}