示例#1
0
        public static string MergeString(string org, string dst)
        {
            string result = LcdHelper.IdentityNull();

            if (LcdHelper.IsEmptyID(org) == true)
            {
                result = dst;
            }
            else
            {
                result = string.Format("{0},{1}", org, dst);
            }

            return(result);
        }