Files
esiur-dotnet/Libraries/Esiur/Resource/Attributes/VolatileAttribute.cs
T
2026-07-12 15:22:42 +03:00

21 lines
508 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Resource.Attributes
{
/// <summary>
/// Indicates that an exported property has volatile synchronization
/// semantics. This is unrelated to the C# volatile memory modifier.
/// </summary>
[AttributeUsage(
AttributeTargets.Property |
AttributeTargets.Field,
AllowMultiple = false,
Inherited = true)]
public sealed class VolatileAttribute : Attribute
{
}
}