List<string> namesList = new List<string>()//Список с именами переменных
{
"Переменная 1",
"Переменная 2",
"Переменная 3"
};
foreach(string name in project.Variables.Keys)
{
if(!namesList.Contains(name)) project.Variables[name].Value = string.Empty;
}