参见英文答案 >
What do single quotes do in C++ when used on multiple characters?4个
> Single quotes vs. double quotes in C or C++12个
我正在翻译一些C到C#代码,我看到下面的定义:
> Single quotes vs. double quotes in C or C++12个
我正在翻译一些C到C#代码,我看到下面的定义:
#define x 'liaM'
首先,这个单引号是什么意思?我在c#中使其成为字符串常量吗?
其次,这个常数被赋值为C中的uint变量.这是如何工作的?
uint m = x;
这有时被称为
FOURCC.有一个Windows API可以将字符串转换为称为
mmioStringToFOURCC的FOURCC,这里有一些C#代码来做同样的事情:
原文链接:https://www.f2er.com/windows/363952.htmlpublic 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); }