记录一个方法

      internal static string MapStringAttributeToString(string s) {
 
            // If it's an empty string, change it to null
            if (s != null && s.Length == 0)
                return null;
 
            // Otherwise, just return the input
            return s;
        }
posted @ 2021-11-10 11:18  vba是最好的语言  阅读(24)  评论(0编辑  收藏  举报