The out parameter 'xxx' must be assigned to before control leaves

void myVoid (out string xxx)
{
if (...)
{
xxx = ....
return;
}

xxx = ""; // bu kısım olmadığında başlıktaki hata oluşuyor.
}

search this blog (most likely not here)