- Home /
No overload for method 'SaveInfo' takes '3' arguments
Hi there, I was wondering if someone could help me figure out this error I keep getting.
public void PostInfo()
{
if (SaveInfo != null)
{
//send info for save in data base
SaveInfo.SaveInfo(KillsInput.text, DeathsInput.text, ScoreInput.text);
StartCoroutine(RefreshWait());
KillsInput.text = "";
DeathsInput.text = "";
ScoreInput.text = "";
}
else
{
Debug.LogWarning("Please Login Before open this scene");
PlayerInfo.text = "Please Login";
}
}
I'd really appreciate all the help I can get. Thank you!
Comment
Your answer

Follow this Question
Related Questions
No overload for method "Destroy" takes 2 arguments? -1 Answers
Why isn't the best overload method not compatible with the arguments list? 1 Answer
Overloaded methods with one minor difference... Any way to refactor? 2 Answers
The best overload for the method "XXXX" is not compatible with the arguement() 2 Answers