CommandLineReader.GetCommandLine C# (CSharp) Method

GetCommandLine() public static method

public static GetCommandLine ( ) : string
return string
    public static string GetCommandLine()
    {
        string[] args = GetCommandLineArgs();

        if (args.Length > 0)
        {
            return string.Join(" ", args);
        }
        else
        {
            Debug.LogError("CommandLineReader.cs - GetCommandLine() - Can't find any command line arguments!");
            return "";
        }
    }