CommonResStrings.cs 390 B

123456789101112131415
  1. using System.Reflection;
  2. using System.Resources;
  3. internal static class CommonResStrings
  4. {
  5. private static ResourceManager resmgr = new ResourceManager("CommonResStrings", Assembly.GetExecutingAssembly());
  6. internal static string CopyrightForCmdLine => GetString("Microsoft_Copyright_CommandLine_Logo");
  7. internal static string GetString(string id)
  8. {
  9. return resmgr.GetString(id);
  10. }
  11. }