LCIDConversionAttribute.cs 430 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Runtime.InteropServices.LCIDConversionAttribute.cs
  3. //
  4. // Name: Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc.
  7. //
  8. using System;
  9. namespace System.Runtime.InteropServices {
  10. [AttributeUsage (AttributeTargets.Method)]
  11. public sealed class LCIDConversionAttribute : Attribute
  12. {
  13. int id;
  14. public LCIDConversionAttribute (int lcid)
  15. {
  16. id = lcid;
  17. }
  18. public int Value {
  19. get { return id; }
  20. }
  21. }
  22. }