fixed member accessibility to match MS (corcompare).
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / GuidAttribute.cs
1 //\r
2 // System.Runtime.InteropServices.InAttribute.cs\r
3 //\r
4 // Author:\r
5 //   Kevin Winchester (kwin@ns.sympatico.ca)\r
6 //\r
7 // (C) 2002 Kevin Winchester\r
8 //\r
9 \r
10 namespace System.Runtime.InteropServices {\r
11 \r
12         [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Delegate)]\r
13         public sealed class GuidAttribute : Attribute {\r
14                 \r
15                 private string guidValue;\r
16                 \r
17                 public GuidAttribute (string guid) {\r
18                         guidValue = guid;       \r
19                 }\r
20                 \r
21                 public string Value {\r
22                         get {return guidValue;}\r
23                 }\r
24         }\r
25 }\r