THX
i use this code
it work
int count = Convert.ToInt32(project.Variables["company_count"].Value);
// What to repeat
string word = "{DOWN}\n"; // You can change word "{Down}" to whatever you need
// Building string
string repeatWords = String.Concat(Enumerable.Repeat(word, count));
return repeatWords;