I currently have the below code:
public int GetSeatInfoString(DisplayOptions choice, out string[] strSeatInfoStrings) { strSe
public int GetSeatInfoString(DisplayOptions choice, out string[] strSeatInfoStrings)
{ strSe
The error isn't anything to do with your out parameter.
out
Your method
public int GetSeatInfoString( DisplayOptions choice, out string[] strSeatInfoStrings)
is declared as returning an int, and doesn't do this for all code paths.
int