System.Diagnostics.Tests.ProcessTests.ConcatThreeArguments C# (CSharp) Method

ConcatThreeArguments() private static method

private static ConcatThreeArguments ( string one, string two, string three ) : int
one string
two string
three string
return int
        private static int ConcatThreeArguments(string one, string two, string three)
        {
            Console.Write(string.Join(",", one, two, three));
            return SuccessExitCode;
        }
ProcessTests