// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //------------------------------------------------------------------------------ using System; namespace System.Runtime.CompilerServices { //| [AttributeUsage(AttributeTargets.Field)] public sealed class AccessedThroughPropertyAttribute : Attribute { //| public AccessedThroughPropertyAttribute(string propertyName); } }