| File: SRDescriptionAttribute.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.ComponentModel; namespace System.Windows.Forms; [AttributeUsage(AttributeTargets.All)] internal sealed class SRDescriptionAttribute : DescriptionAttribute { private bool _replaced; public override string Description { get { if (!_replaced) { _replaced = true; DescriptionValue = SR.GetResourceString(base.Description); } return base.Description; } } public SRDescriptionAttribute(string description) : base(description) { } }