13 lines
147 B
C#
Raw Normal View History

using System;
#if MOBILE
namespace System {
[AttributeUsage(AttributeTargets.Field)]
public sealed class WeakAttribute : Attribute
{
}
}
#endif