Amazon.Util.Internal.RootConfig.Choose C# (CSharp) 메소드

Choose() 개인적인 정적인 메소드

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