UserTips.cs 462 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace LYFZ.WinAPI
  6. {
  7. public class UserTips
  8. {
  9. public UserTips() {
  10. }
  11. /// <summary>
  12. /// 不能为空提示
  13. /// </summary>
  14. /// <param name="tips"></param>
  15. /// <returns></returns>
  16. public static string GetCanNotBeEmptyTips(string tips)
  17. {
  18. return tips + "不能为空";
  19. }
  20. }
  21. }