单引号字符串到uint在c#

前端之家收集整理的这篇文章主要介绍了单引号字符串到uint在c#前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > 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#代码,我看到下面的定义:
#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);
}
原文链接:https://www.f2er.com/windows/363952.html

猜你在找的Windows相关文章