I've been learning C# for the past few weeks now and I need to pass the return values from Method1 and Method2 into Method3 but as string parameters so that I may interpolate the values into the body of Method3. Any advice on how to do such a thing?
string Method1()
{
//Do Stuff Here
return result
}
string Method2()
{
//Do Stuff Here
return result
}
void Method3()
{
//String Interpolation Here
}