Why calls the compiler only the second function and not the first? I have no idea why it's taken the second function.
WriteLog("string", "string2" , "string3", "string4");
public static void WriteLog(string text, params string[] pAktionInfos)
{
WriteLog(text, pAktionInfos);
}
public static void WriteLog(string text, string text2, params string[] pAktionInfos)
{
if (string.IsNullOrEmpty(text2))
{
//Awesome Code
}
//Another Awesome Code
}