RSL.cs 323 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.Utility
  6. {
  7. public static class RSL
  8. {
  9. public static string Get(string name)
  10. {
  11. return EMIS.Resources.DataAnnotations.Label.ResourceManager.GetObject(name).ToString();
  12. }
  13. }
  14. }