I am trying to code a little console game but I have a little problem.
In order to not write a function for every single decision the player will make, I need to know if there is a possibility to return multiple values in a single function. Below is a little example on what I have at the moment.
public static string three_Days_before()
{
Console.Write("72 hours earlier...");
Console.WriteLine(); //Just a little space.
string first_sentence = "";
Console.WriteLine(); //Just a little space.
string second_sentence = "";
}
So here is what I have. And I want to know if I can somehow return both strings within the same function, without the need to write a function for every scene in order to be called in the Main()
later.