Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Runtime.CompilerServices/AccessedThroughPropertyAttribute.cs')
-rw-r--r--mcs/class/corlib/System.Runtime.CompilerServices/AccessedThroughPropertyAttribute.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/mcs/class/corlib/System.Runtime.CompilerServices/AccessedThroughPropertyAttribute.cs b/mcs/class/corlib/System.Runtime.CompilerServices/AccessedThroughPropertyAttribute.cs
deleted file mode 100644
index 8343f11197a..00000000000
--- a/mcs/class/corlib/System.Runtime.CompilerServices/AccessedThroughPropertyAttribute.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-//
-// System.Runtime.CompilerServices.AccessedThroughPropertyAttribute.cs
-//
-// Author: Duncan Mak (duncan@ximian.com)
-//
-// (C) Copyright, Ximian Inc.
-
-using System;
-
-namespace System.Runtime.CompilerServices {
-
- [AttributeUsage (AttributeTargets.Field)]
- public sealed class AccessedThroughPropertyAttribute : Attribute
- {
- string name;
- public AccessedThroughPropertyAttribute (string propertyName)
- {
- name = propertyName;
- }
-
- public string PropertyName {
- get { return name; }
- }
- }
-}