AssemblyVersionAttribute.cs 491 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // System.Reflection.AssemblyVersionAttribute.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // (C) Ximian, Inc. http://www.ximian.com
  7. //
  8. namespace System.Reflection
  9. {
  10. [AttributeUsage (AttributeTargets.Assembly)]
  11. public sealed class AssemblyVersionAttribute : Attribute
  12. {
  13. // Field
  14. private string name;
  15. // Constructor
  16. public AssemblyVersionAttribute (string version)
  17. {
  18. name = version;
  19. }
  20. // Property
  21. public string Version
  22. {
  23. get { return name; }
  24. }
  25. }
  26. }