我正在寻找一个脚本或简单的工具,或者可能是VS2017插件,可以用命名的常量替换C ++代码中的字符串文字,例如,它应该对此进行转换:
if (key == L"ObjectType" || key == L"Object type")
{
}
对此:
static const wchar_t ObjectType1[] = L"ObjectType";
static const wchar_t xObjectType2[] = L"Object Type";
if (key == ObjectType1 || key == ObjectType2)
{
}