Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TableAttribute.cs
Go to the documentation of this file.
2
4
5[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
7{
8 private string _schema;
9
10 public string Name { get; }
11
12 public string? Schema
13 {
14 get
15 {
16 return _schema;
17 }
18 [param: DisallowNull]
19 set
20 {
21 if (string.IsNullOrWhiteSpace(value))
22 {
24 }
25 _schema = value;
26 }
27 }
28
29 public TableAttribute(string name)
30 {
31 if (string.IsNullOrWhiteSpace(name))
32 {
34 }
35 Name = name;
36 }
37}
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string ArgumentIsNullOrWhitespace
Definition SR.cs:14
Definition SR.cs:7