Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ForeignKeyAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
5{
6 public string Name { get; }
7
8 public ForeignKeyAttribute(string name)
9 {
10 if (string.IsNullOrWhiteSpace(name))
11 {
13 }
14 Name = name;
15 }
16}
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string ArgumentIsNullOrWhitespace
Definition SR.cs:14
Definition SR.cs:7