Amazon.Util.Internal.RootConfig.Choose C# (CSharp) Method

Choose() private static method

private static Choose ( string a, string b ) : string
a string
b string
return string
        private static string Choose(string a, string b)
        {
            return (string.IsNullOrEmpty(a) ? b : a);
        }