Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DataSysDescriptionAttribute.cs
Go to the documentation of this file.
2
3namespace System.Data;
4
5[AttributeUsage(AttributeTargets.All)]
6[Obsolete("DataSysDescriptionAttribute has been deprecated and is not supported.")]
8{
9 private bool _replaced;
10
11 public override string Description
12 {
13 get
14 {
15 if (!_replaced)
16 {
17 _replaced = true;
18 base.DescriptionValue = base.Description;
19 }
20 return base.Description;
21 }
22 }
23
24 [Obsolete("DataSysDescriptionAttribute has been deprecated and is not supported.")]
25 public DataSysDescriptionAttribute(string description)
26 : base(description)
27 {
28 }
29}