You can return in multiple ways:
using single object which can have many properties. that is standard.
Using Out parameter.
Using Tuple you can return two values.
Depends on requirements if you want to return multiple string values need to create
Array of string like :
public string[] returnValues()
{
//to do code and return array of string
}