1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.WinAPI
- {
- public class UserTips
- {
- public UserTips() {
-
- }
- /// <summary>
- /// 不能为空提示
- /// </summary>
- /// <param name="tips"></param>
- /// <returns></returns>
- public static string GetCanNotBeEmptyTips(string tips)
- {
- return tips + "不能为空";
- }
- }
- }
|